Spaces:
Runtime error
Runtime error
koji
commited on
Commit
·
1688a68
1
Parent(s):
29fd801
update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -1,7 +1,10 @@
|
|
1 |
FROM ubuntu
|
2 |
ENV TZ=Etc/UTC
|
3 |
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
4 |
-
RUN apt-get update && apt-get install --yes pkg-config libsystemd-dev
|
|
|
|
|
|
|
5 |
|
6 |
# Set the working directory in the container to /app
|
7 |
WORKDIR /app
|
|
|
1 |
FROM ubuntu
|
2 |
ENV TZ=Etc/UTC
|
3 |
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
4 |
+
RUN apt-get update && apt-get install --yes pkg-config libsystemd-dev
|
5 |
+
RUN apt-get install software-properties-common
|
6 |
+
RUN add-apt-repository ppa:deadsnakes/ppa
|
7 |
+
RUN apt install python3.7
|
8 |
|
9 |
# Set the working directory in the container to /app
|
10 |
WORKDIR /app
|