wowlet-backend/Dockerfile
2020-11-14 19:42:34 +01:00

9 lines
No EOL
131 B
Docker

FROM python:3.7
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 1337
CMD ["python3", "-u", "run.py"]