move files around
This commit is contained in:
9
docker/docker-sample/Dockerfile
Normal file
9
docker/docker-sample/Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user