12 lines
142 B
Docker
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
|