]> git.immae.eu Git - github/bastienwirtz/homer.git/blobdiff - Dockerfile
Bump vite from 4.4.9 to 4.5.2
[github/bastienwirtz/homer.git] / Dockerfile
index ea28aa3ab2f303eb738c1f4531e895007233734c..bf63e62e9a68b9d4a73e01b355f1fb98475e8936 100644 (file)
@@ -4,24 +4,37 @@ FROM node:lts-alpine as build-stage
 WORKDIR /app
 
 COPY package*.json ./
-RUN yarn install
+RUN yarn install --frozen-lockfile
 
 COPY . .
 RUN yarn build
 
 # production stage
-FROM alpine:3.11
+FROM alpine:3.18
 
-COPY --from=build-stage /app/dist /www/
+ENV GID 1000
+ENV UID 1000
+ENV PORT 8080
+ENV SUBFOLDER "/_"
+ENV INIT_ASSETS 1
+ENV IPV6_DISABLE 0
 
-ENV USER darkhttpd
-ENV GROUP darkhttpd
-ENV GID 911
-ENV UID 911
+RUN addgroup -S lighttpd -g ${GID} && adduser -D -S -u ${UID} lighttpd lighttpd && \
+    apk add -U --no-cache lighttpd
 
-RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
-    apk add -U darkhttpd
+WORKDIR /www
 
-USER darkhttpd
+COPY lighttpd.conf /lighttpd.conf
+COPY lighttpd-ipv6.sh /etc/lighttpd/ipv6.sh
+COPY entrypoint.sh /entrypoint.sh
+COPY --from=build-stage --chown=${UID}:${GID} /app/dist /www/
+COPY --from=build-stage --chown=${UID}:${GID} /app/dist/assets /www/default-assets
 
-ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]
\ No newline at end of file
+USER ${UID}:${GID}
+
+HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
+    CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:${PORT}/ || exit 1
+
+EXPOSE ${PORT}
+
+ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]