This repository has been archived on 2022-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Yotter/Dockerfile
Sandro Jäckel e00c40d457
Combine RUNs
to reduce layers
2020-09-04 18:12:24 +02:00

16 lines
231 B
Docker

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN flask db init \
&& flask db migrate\
&& flask db upgrade
CMD flask run --host 0.0.0.0
EXPOSE 5000