We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0acc990 commit dca933bCopy full SHA for dca933b
1 file changed
Dockerfile
@@ -18,7 +18,13 @@ USER $APP_USER:$APP_GROUP
18
# Install python-dvuploader dependencies
19
COPY --chown=$APP_USER requirements.txt .
20
RUN pip install -r requirements.txt
21
-
22
ENV PATH="/opt/app/.local/bin:$PATH"
23
+# Install scripts (so they can be more easily installed on the host)
24
+COPY --chown=$APP_USER scripts /opt/app/scripts
25
+
26
+# Smell-check the installation
27
+RUN dvuploader --help && \
28
+ ls -l /opt/app/scripts
29
30
ENTRYPOINT [ "dvuploader" ]
0 commit comments