assert the healthcheck.py exec permissions are preserved, should resolve #41
This commit is contained in:
parent
f5a37f2e86
commit
06cfafb803
|
@ -19,8 +19,8 @@ chown -R app:app /app/common/static && \
|
|||
chmod -R 0750 /app/common/static && \
|
||||
chown -R app:app /app/static && \
|
||||
chmod -R 0750 /app/static && \
|
||||
find /app -type f -exec chmod 640 {} \; && \
|
||||
chmod +x /app/healthcheck.py
|
||||
find /app -type f ! -iname healthcheck.py -exec chmod 640 {} \; && \
|
||||
chmod 0755 /app/healthcheck.py
|
||||
|
||||
# Run migrations
|
||||
exec s6-setuidgid app \
|
||||
|
|
Loading…
Reference in New Issue