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