Skip to content

Commit

Permalink
Fix: [docker] file permission 🧩
Browse files Browse the repository at this point in the history
  • Loading branch information
katabame committed May 17, 2023
1 parent 7533931 commit 496f0de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dockerfile
Expand Up @@ -10,7 +10,7 @@ RUN apt-get install -y --no-install-recommends curl jq openjdk-19-jre-headless
# Create server folder
RUN adduser --no-create-home --disabled-password --disabled-login --gecos '' 'bamecraft'
RUN mkdir /server && chown -R bamecraft:bamecraft /server
COPY --chown=bamecraft:bamecraft --chmod=700 entrypoint.sh /server/entrypoint.sh
COPY --chown=bamecraft:bamecraft --chmod=755 entrypoint.sh /server/entrypoint.sh
WORKDIR /server

# Execute entrypoint (when container starts)
Expand Down

0 comments on commit 496f0de

Please sign in to comment.