aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile.arm64v8
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2020-06-23 22:56:33 -0700
committerBastien Wirtz <bastien.wirtz@gmail.com>2020-06-28 11:05:40 -0700
commitb102c9b2b3aaa4d66bda8d932ba2d6bd4575c044 (patch)
tree41bdb9b456cbb8d59aaf421e8c82582a4eabcc55 /Dockerfile.arm64v8
parent796a16c8da1e40aef418559ade2252a5275708c8 (diff)
downloadhomer-b102c9b2b3aaa4d66bda8d932ba2d6bd4575c044.tar.gz
homer-b102c9b2b3aaa4d66bda8d932ba2d6bd4575c044.tar.zst
homer-b102c9b2b3aaa4d66bda8d932ba2d6bd4575c044.zip
Regroup all editable files in one place
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"]