tillwenke commited on
Commit
868ee3a
·
verified ·
1 Parent(s): b9a6d6e

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +16 -0
Dockerfile ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9-slim
2
+
3
+ RUN apt-get update && apt-get install -y \
4
+ build-essential \
5
+ curl \
6
+ software-properties-common \
7
+ git \
8
+ && rm -rf /var/lib/apt/lists/*
9
+
10
+ COPY requirements.txt ./
11
+ COPY src/ ./src/
12
+
13
+ RUN pip3 install -r requirements.txt
14
+
15
+
16
+ ENTRYPOINT ["python3", "run.py"]