mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-24 11:05:04 +00:00
change uploads permission after creation of user
This commit is contained in:
parent
1af209cd24
commit
837a8ff35f
1 changed files with 2 additions and 1 deletions
|
@ -13,11 +13,12 @@ RUN npm run compile:all
|
|||
FROM node:8.9.1
|
||||
|
||||
COPY --from=0 /app /app
|
||||
RUN chown app:app /app/uploads
|
||||
# All app and node_modules will be owned by root.
|
||||
# The app will run as the 'app' user, and so not have write permissions
|
||||
# on any files it doesn't need.
|
||||
RUN useradd --user-group --create-home --home-dir /app --shell /bin/false app
|
||||
RUN chown app:app /app/uploads
|
||||
|
||||
USER app
|
||||
WORKDIR /app
|
||||
|
||||
|
|
Loading…
Reference in a new issue