koji commited on
Commit
8f22300
·
1 Parent(s): 42f1e75

update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -7
Dockerfile CHANGED
@@ -1,10 +1,7 @@
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 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