Skip to content

Commit

Permalink
base: Fix path to entry.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
iBug committed Jul 2, 2024
1 parent 53e8e94 commit 74b4835
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion base/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ RUN apk add --no-cache bash tzdata su-exec && \
ADD ["entry.sh", "savelog", "/usr/local/bin/"]
ADD ["pip.conf", "/etc/"]
VOLUME ["/data", "/log"]
CMD ["/entry.sh"]
CMD ["/usr/local/bin/entry.sh"]
2 changes: 1 addition & 1 deletion base/Dockerfile.alpine-edge
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ RUN apk add --no-cache bash tzdata su-exec && \
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
ADD ["entry.sh", "savelog", "/usr/local/bin/"]
VOLUME ["/data", "/log"]
CMD ["/entry.sh"]
CMD ["/usr/local/bin/entry.sh"]
2 changes: 1 addition & 1 deletion base/Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ RUN echo 'Asia/Shanghai' > /etc/timezone && dpkg-reconfigure -f noninteractive t
apt-get purge -y --auto-remove wget && rm -rf /var/lib/apt/lists/*
ADD ["entry.sh", "savelog", "/usr/local/bin/"]
VOLUME ["/data", "/log"]
CMD ["/entry.sh"]
CMD ["/usr/local/bin/entry.sh"]

0 comments on commit 74b4835

Please sign in to comment.