docker ftw

This commit is contained in:
randomuser 2023-05-16 22:34:19 -05:00
parent 6d302c9824
commit 083bf7c80c
1 changed files with 7 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM python:3.7-alpine
WORKDIR /
RUN apk add --no-cache gcc musl-dev linux-headers make python3 py3-pip
RUN pip install flask flask-sock gunicorn
COPY . .
CMD ["make", "prod"]