We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8908cce commit 21b6e61Copy full SHA for 21b6e61
.dockerignore
@@ -0,0 +1,5 @@
1
+.github
2
+.git
3
+forgejo
4
+Industrial_Nikolaev_AA_9381
5
+reports
Dockerfile
@@ -1,13 +1,13 @@
-FROM python:3.10-slim
+FROM python:3.12-slim
+ENV GIT_PYTHON_GIT_EXECUTABLE=/usr/bin/git
WORKDIR /app
6
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
7
-COPY . /app
8
-
+COPY requirements.txt .
9
RUN pip install --no-cache-dir -r requirements.txt
10
11
-ENV GIT_PYTHON_GIT_EXECUTABLE=/usr/bin/git
+COPY . /app
12
13
ENTRYPOINT ["python", "main.py"]
0 commit comments