aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
diff options
context:
space:
mode:
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}