aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile.arm64v8
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile.arm64v8')
-rw-r--r--Dockerfile.arm64v83
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile.arm64v8 b/Dockerfile.arm64v8
index 7899027..4e307d8 100644
--- a/Dockerfile.arm64v8
+++ b/Dockerfile.arm64v8
@@ -32,9 +32,10 @@ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} &
32 rm /usr/bin/qemu-aarch64-static 32 rm /usr/bin/qemu-aarch64-static
33 33
34COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/ 34COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
35COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist/assets /www/default-assets
35COPY --chown=${USER}:${GROUP} entrypoint.sh /entrypoint.sh 36COPY --chown=${USER}:${GROUP} entrypoint.sh /entrypoint.sh
36 37
37USER ${USER} 38USER ${USER}
38EXPOSE ${PORT} 39EXPOSE ${PORT}
39VOLUME [ "/www/config.yml", "/www/assets" ] 40VOLUME /www/assets
40ENTRYPOINT ["/bin/sh", "/entrypoint.sh"] 41ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]