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 7ca527a commit 0cb7538Copy full SHA for 0cb7538
Dockerfile
@@ -7,12 +7,12 @@ COPY requirements.txt .
7
RUN pip install uv
8
RUN pip install -r requirements.txt
9
10
-COPY 02-install-docker.sh .
11
-RUN ./02-install-docker.sh
+COPY install-docker.sh .
+RUN ./install-docker.sh
12
13
FROM base AS runtime
14
COPY ./static ./static
15
-COPY compose.yaml app.py 02-install-docker.sh .
+COPY compose.yaml app.py .
16
17
#CMD ["python", "launcher/launcher.py"]
18
CMD ["python", "-u", "app.py"]
02-install-docker.sh install-docker.sh02-install-docker.sh renamed to install-docker.sh
0 commit comments