wowlet-backend/Dockerfile

9 lines
131 B
Docker
Raw Normal View History

2020-11-14 18:42:34 +00:00
FROM python:3.7
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 1337
CMD ["python3", "-u", "run.py"]