move files around

This commit is contained in:
2020-01-15 17:33:40 -06:00
parent 2b9340d951
commit 90b28dac24
7 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
FROM python:3.7-alpine
WORKDIR /code
ENV FLASK_APP app.py
ENV FLASK_RUN_HOST 0.0.0.0
RUN apk add --no-cache gcc musl-dev linux-headers
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
CMD ["flask", "run"]