X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=Dockerfile;h=d7179fc59e3a9b5864b0577f1fff57be6e6dc139;hb=451b1ac62450fb2c4f8e2382bcf422bb7a434700;hp=7621639c17956b6c95fdf5147fad9877d484daea;hpb=ab7ac44c191e3b7dea696e76b74097e23f73b18c;p=github%2Fbastienwirtz%2Fhomer.git diff --git a/Dockerfile b/Dockerfile index 7621639..d7179fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,33 @@ -FROM alpine:3.11 +# build stage +FROM node:lts-alpine as build-stage + +WORKDIR /app + +COPY package*.json ./ +RUN yarn install --frozen-lockfile -COPY ./ /www/ +COPY . . +RUN yarn build + +# production stage +FROM alpine:3.11 ENV USER darkhttpd ENV GROUP darkhttpd ENV GID 911 ENV UID 911 +ENV PORT 8080 RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \ - apk add -U darkhttpd + apk add -U --no-cache su-exec darkhttpd + +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 -USER darkhttpd +HEALTHCHECK --interval=5s --timeout=5s --retries=3 \ + CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:${PORT}/ || exit 1 -ENTRYPOINT ["darkhttpd","/www/", "--no-listing"] +EXPOSE ${PORT} +VOLUME /www/assets +ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]