1
0
Fork 1
mirror of https://git.sr.ht/~tsileo/microblog.pub synced 2025-01-12 08:04:27 +00:00
microblog.pub/Dockerfile
Thomas Sileo 7de81df3e5 Lock to Python 3.7
Everything is broken with Python3.8 🙀
2019-10-16 23:49:17 +02:00

7 lines
158 B
Docker

FROM python:3.7
COPY requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
ADD . /app
ENV FLASK_APP=app.py
CMD ["./run.sh"]