We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f886d41 commit 43bbb5fCopy full SHA for 43bbb5f
Dockerfile
@@ -1,16 +1,14 @@
1
-FROM python:3.7-stretch
+FROM python:3.11-buster
2
LABEL maintainer "[email protected]"
3
4
-ARG userid=1000
5
-
6
RUN apt-get update && \
7
- pip install pygame
+ apt-get install -y python3-pygame
8
9
COPY ./requirements.txt /requirements.txt
10
RUN pip install -r /requirements.txt
11
COPY ./ app/
12
RUN cd app/ && python setup.py install
13
-RUN useradd -m -U -s /bin/bash -u $userid pygame
+RUN useradd -m -U -s /bin/bash pygame
14
15
USER pygame
16
WORKDIR /home/pygame
requirements.txt
@@ -1 +1,5 @@
-pytest==6.0.1
+nose==1.3.7
+mock==2.0.0
+mypy==1.0.0
+mypy-extensions==1.0.0
+typing-extensions==4.4.0
0 commit comments