This commit is contained in:
“Danny-de-bree”
2024-01-12 10:37:39 +01:00
parent be120cea7c
commit f68ef7afe2
3 changed files with 112 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM python:3.11
WORKDIR /opt/app
COPY requirements.txt /opt/app
RUN pip3 install -r requirements.txt
COPY . /opt/app