CI: remove --chmod from Dockerfiles (#91)

This commit is contained in:
Markus Petzsch 2024-06-02 12:15:45 +02:00 committed by GitHub
parent f67d00fd58
commit b2be68992f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -32,8 +32,8 @@ RUN poetry install --only main
EXPOSE 5000
COPY --chmod=0755 docker-entrypoint.sh /docker-entrypoint.sh
COPY docker-entrypoint.sh /docker-entrypoint.sh
COPY --chmod=0755 wait-for-it.sh /wait-for-it.sh
COPY wait-for-it.sh /wait-for-it.sh
ENTRYPOINT [ "/docker-entrypoint.sh" ]

View File

@ -36,8 +36,8 @@ RUN poetry install --only main
EXPOSE 5000
COPY --chmod=0755 docker-entrypoint.sh /docker-entrypoint.sh
COPY docker-entrypoint.sh /docker-entrypoint.sh
COPY --chmod=0755 wait-for-it.sh /wait-for-it.sh
COPY wait-for-it.sh /wait-for-it.sh
ENTRYPOINT [ "/docker-entrypoint.sh" ]