]> git.immae.eu Git - github/bastienwirtz/homer.git/blobdiff - Dockerfile
Added forwarder binding to Service.vue
[github/bastienwirtz/homer.git] / Dockerfile
index d7179fc59e3a9b5864b0577f1fff57be6e6dc139..0a43027dc75198b85e2b1302b3637842e88b698a 100644 (file)
@@ -10,7 +10,7 @@ COPY . .
 RUN yarn build
 
 # production stage
-FROM alpine:3.11
+FROM alpine:3.15
 
 ENV USER darkhttpd
 ENV GROUP darkhttpd
@@ -25,7 +25,7 @@ COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
 COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist/assets /www/default-assets
 COPY entrypoint.sh /entrypoint.sh
 
-HEALTHCHECK --interval=5s --timeout=5s --retries=3 \
+HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
     CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:${PORT}/ || exit 1
 
 EXPOSE ${PORT}