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

16 lines
246 B
Docker
Raw Normal View History

2020-09-04 01:57:08 +05:30
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
2020-09-04 21:42:24 +05:30
RUN flask db init \
&& flask db migrate\
&& flask db upgrade
2020-09-04 01:57:08 +05:30
CMD [ "flask", "run", "--host", "0.0.0.0" ]
2020-09-04 01:57:08 +05:30
EXPOSE 5000