aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2020-06-25 21:13:22 -0700
committerGitHub <noreply@github.com>2020-06-25 21:13:22 -0700
commit449858fb7768f718853512b8b1a3219274e2508e (patch)
treed059f9664b8e46208af3be11c716903afc479b7b /Dockerfile
parenta7ba289efa228613b18abc853c22fb3b5d99b9a7 (diff)
downloadhomer-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--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index c760fec..ef734bb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -23,7 +23,7 @@ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} &
23 23
24COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/ 24COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
25COPY --chown=${USER}:${GROUP} entrypoint.sh /entrypoint.sh 25COPY --chown=${USER}:${GROUP} entrypoint.sh /entrypoint.sh
26RUN mv /www/assets /www/default-assets 26COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist/assets /www/default-assets
27 27
28USER ${USER} 28USER ${USER}
29EXPOSE ${PORT} 29EXPOSE ${PORT}