Skip to content

Commit

Permalink
Fix Dockerfile chmod
Browse files Browse the repository at this point in the history
  • Loading branch information
antlafarge committed Jul 16, 2024
1 parent 5d7c722 commit c356d2b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 18 deletions.
4 changes: 1 addition & 3 deletions alpine-openjdk17.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ COPY docker-entrypoint.sh \
org.jdownloader.extensions.eventscripter.EventScripterExtension.scripts.json \
./

RUN chown -R 1000:100 .

RUN chmod -R 771 .
RUN chown -R 1000:100 . && chmod -R 775 .

CMD ["/bin/bash", "-c", "./docker-entrypoint.sh"]
4 changes: 1 addition & 3 deletions alpine-openjdk21.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ COPY docker-entrypoint.sh \
org.jdownloader.extensions.eventscripter.EventScripterExtension.scripts.json \
./

RUN chown -R 1000:100 .
RUN chown -R 1000:100 . && chmod -R 775 .

RUN chmod -R 771 .

CMD ["/bin/bash", "-c", "./docker-entrypoint.sh"]
4 changes: 1 addition & 3 deletions alpine-openjdk8.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ COPY docker-entrypoint.sh \
org.jdownloader.extensions.eventscripter.EventScripterExtension.scripts.json \
./

RUN chown -R 1000:100 .

RUN chmod -R 771 .
RUN chown -R 1000:100 . && chmod -R 775 .

CMD ["/bin/bash", "-c", "./docker-entrypoint.sh"]
4 changes: 1 addition & 3 deletions ubuntu-openjdk17.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ COPY docker-entrypoint.sh \
org.jdownloader.extensions.eventscripter.EventScripterExtension.scripts.json \
./

RUN chown -R 1000:100 .
RUN chown -R 1000:100 . && chmod -R 775 .

RUN chmod -R 771 .

CMD ["/bin/bash", "-c", "./docker-entrypoint.sh"]
4 changes: 1 addition & 3 deletions ubuntu-openjdk21.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ COPY docker-entrypoint.sh \
org.jdownloader.extensions.eventscripter.EventScripterExtension.scripts.json \
./

RUN chown -R 1000:100 .
RUN chown -R 1000:100 . && chmod -R 775 .

RUN chmod -R 771 .

CMD ["/bin/bash", "-c", "./docker-entrypoint.sh"]
4 changes: 1 addition & 3 deletions ubuntu-openjdk8.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ COPY docker-entrypoint.sh \
org.jdownloader.extensions.eventscripter.EventScripterExtension.scripts.json \
./

RUN chown -R 1000:100 .
RUN chown -R 1000:100 . && chmod -R 775 .

RUN chmod -R 771 .

CMD ["/bin/bash", "-c", "./docker-entrypoint.sh"]

0 comments on commit c356d2b

Please sign in to comment.