Spaces:
Runtime error
Runtime error
koji
commited on
Commit
·
8f22300
1
Parent(s):
42f1e75
update Dockerfile
Browse files- Dockerfile +4 -7
Dockerfile
CHANGED
@@ -1,10 +1,7 @@
|
|
1 |
-
FROM
|
2 |
-
|
3 |
-
RUN
|
4 |
-
|
5 |
-
RUN add-apt-repository ppa:deadsnakes/ppa -y
|
6 |
-
RUN apt-get update
|
7 |
-
RUN apt install python3.7
|
8 |
|
9 |
# Set the working directory in the container to /app
|
10 |
WORKDIR /app
|
|
|
1 |
+
FROM python:3.7.15
|
2 |
+
|
3 |
+
RUN apt-get update && \
|
4 |
+
apt-get install -y git pkg-config libsystemd-dev
|
|
|
|
|
|
|
5 |
|
6 |
# Set the working directory in the container to /app
|
7 |
WORKDIR /app
|