Skip to content

Commit

Permalink
🐳 Correct app path in docker
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianpb committed Mar 5, 2024
1 parent 813c2f6 commit 496e022
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
target: prod
build-args: |
app_path=/muse
- name: 🍱 Upload package artifact
uses: actions/upload-artifact@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM cristianpb/mopidy-base as muse
ARG app_path

# Base dir /app
WORKDIR /$app_path
WORKDIR $app_path

COPY mopidy_muse/mopidy.conf /root/.config/mopidy.conf
COPY LICENSE ./
Expand All @@ -23,7 +23,7 @@ CMD ["mopidy"]
FROM cristianpb/mopidy-base as prod

# Base dir /app
WORKDIR /muse
WORKDIR $app_path

COPY mopidy_muse/mopidy.conf /root/.config/mopidy.conf
COPY LICENSE ./
Expand Down

0 comments on commit 496e022

Please sign in to comment.