Make /app world-readable to better support non-root usage (#523)

Possible fix for failing tests with non-root deployment.
This commit is contained in:
Vinzenz Sinapius 2024-04-04 00:22:12 +02:00 committed by GitHub
parent 1325cc3868
commit 23fda685d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -63,6 +63,8 @@ WORKDIR /crawls
# enable to test custom behaviors build (from browsertrix-behaviors)
# COPY behaviors.js /app/node_modules/browsertrix-behaviors/dist/behaviors.js
RUN chmod o=rX -R /app
ADD docker-entrypoint.sh /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]