Skip to content

Commit

Permalink
Merge pull request #271 from jtagcat/patch-1
Browse files Browse the repository at this point in the history
fixup: Dockerfile: reinstate location of config.toml
  • Loading branch information
mxpv authored Jan 2, 2022
2 parents a5c6e2d + 34c708d commit 656baa0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
# See docs for details: https://goreleaser.com/customization/docker/

FROM alpine:3.10
WORKDIR /app

RUN wget -O /usr/bin/youtube-dl https://github.com/ytdl-org/youtube-dl/releases/latest/download/youtube-dl && \
chmod +x /usr/bin/youtube-dl && \
apk --no-cache add ca-certificates python ffmpeg tzdata
COPY podsync /podsync
COPY podsync /app/podsync


ENTRYPOINT ["/podsync"]
ENTRYPOINT ["/app/podsync"]
CMD ["--no-banner"]
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ services:
- 80:80
volumes:
- ./data:/data/
- ./config.toml:/config.toml
- ./config.toml:/app/config.toml

0 comments on commit 656baa0

Please sign in to comment.