Spaces:
Paused
Paused
HumbleWolf
commited on
Commit
•
87a580f
1
Parent(s):
5c0f665
fix dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
@@ -6,6 +6,11 @@ ENV HOME=/home/user \
|
|
6 |
|
7 |
WORKDIR $HOME/app
|
8 |
|
|
|
|
|
|
|
|
|
|
|
9 |
RUN pip install --no-cache-dir --upgrade pip
|
10 |
|
11 |
COPY --chown=user program $HOME/app/program
|
|
|
6 |
|
7 |
WORKDIR $HOME/app
|
8 |
|
9 |
+
RUN apt-get update && \
|
10 |
+
apt-get install -y python3 python3-pip git
|
11 |
+
|
12 |
+
RUN apt-get install python-is-python3
|
13 |
+
|
14 |
RUN pip install --no-cache-dir --upgrade pip
|
15 |
|
16 |
COPY --chown=user program $HOME/app/program
|