diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-06-25 21:13:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 21:13:22 -0700 |
commit | 449858fb7768f718853512b8b1a3219274e2508e (patch) | |
tree | d059f9664b8e46208af3be11c716903afc479b7b /Dockerfile | |
parent | a7ba289efa228613b18abc853c22fb3b5d99b9a7 (diff) | |
download | homer-449858fb7768f718853512b8b1a3219274e2508e.tar.gz homer-449858fb7768f718853512b8b1a3219274e2508e.tar.zst homer-449858fb7768f718853512b8b1a3219274e2508e.zip |
Apply suggestions from code reviewavoid-file-volume
Co-authored-by: Glenn Toms <Glenn@Glenntoms.gg>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} & | |||
23 | 23 | ||
24 | COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/ | 24 | COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/ |
25 | COPY --chown=${USER}:${GROUP} entrypoint.sh /entrypoint.sh | 25 | COPY --chown=${USER}:${GROUP} entrypoint.sh /entrypoint.sh |
26 | RUN mv /www/assets /www/default-assets | 26 | COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist/assets /www/default-assets |
27 | 27 | ||
28 | USER ${USER} | 28 | USER ${USER} |
29 | EXPOSE ${PORT} | 29 | EXPOSE ${PORT} |