Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ USER $APP_USER:$APP_GROUP
# Install python-dvuploader dependencies
COPY --chown=$APP_USER requirements.txt .
RUN pip install -r requirements.txt

ENV PATH="/opt/app/.local/bin:$PATH"

# Install scripts (so they can be more easily installed on the host)
COPY --chown=$APP_USER scripts /opt/app/scripts

# Smell-check the installation
RUN dvuploader --help && \
ls -l /opt/app/scripts

ENTRYPOINT [ "dvuploader" ]