aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile.arm32v7
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2022-04-10 11:55:11 +0200
committerBastien Wirtz <bastien.wirtz@gmail.com>2022-04-30 15:39:36 +0200
commit049f85221e945b90bf87d21afe4d306839d65740 (patch)
tree1288ab580f2a274df8b507e2bbe37e2ff03c70ca /Dockerfile.arm32v7
parentcd75da69f9e57c3fe0f63c3ed6def0577d75a47c (diff)
downloadhomer-049f85221e945b90bf87d21afe4d306839d65740.tar.gz
homer-049f85221e945b90bf87d21afe4d306839d65740.tar.zst
homer-049f85221e945b90bf87d21afe4d306839d65740.zip
Simplify the container starting process to allow it to run with a
unprivileged user
Diffstat (limited to 'Dockerfile.arm32v7')
-rw-r--r--Dockerfile.arm32v710
1 files changed, 6 insertions, 4 deletions
diff --git a/Dockerfile.arm32v7 b/Dockerfile.arm32v7
index 01a2196..7e1d92b 100644
--- a/Dockerfile.arm32v7
+++ b/Dockerfile.arm32v7
@@ -32,14 +32,16 @@ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} &
32 apk add -U --no-cache lighttpd && \ 32 apk add -U --no-cache lighttpd && \
33 rm /usr/bin/qemu-arm-static 33 rm /usr/bin/qemu-arm-static
34 34
35COPY entrypoint.sh /entrypoint.sh 35WORKDIR /www
36COPY lighttpd.conf /lighttpd.conf
37 36
37COPY lighttpd.conf /lighttpd.conf
38COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/ 38COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
39COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist/assets /www/default-assets 39
40USER ${USER}
40HEALTHCHECK --interval=30s --timeout=5s --retries=3 \ 41HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
41 CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:${PORT}/ || exit 1 42 CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:${PORT}/ || exit 1
42 43
43EXPOSE ${PORT} 44EXPOSE ${PORT}
44VOLUME /www/assets 45VOLUME /www/assets
45ENTRYPOINT ["/bin/sh", "/entrypoint.sh"] 46
47CMD ["lighttpd", "-D", "-f", "/lighttpd.conf"]