TeTwitch/tetris/Dockerfile
2024-07-05 09:23:34 +02:00

12 lines
142 B
Docker

FROM python:3
WORKDIR /app
EXPOSE 8001
COPY requirements.txt /app
RUN pip install -U -r requirements.txt
COPY . /app
CMD python -m tetris