X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=Dockerfile;h=0e9d51a30ce240177c0306ca29d5892e08685e9b;hb=7e48e099aa968307d2b99720a076b4bdc706b5fd;hp=66788b483963f6d583e53426c1bc24f32152b6f6;hpb=fc69081c940f44f89a1faca73a321cb8e1dea3b8;p=github%2Fbastienwirtz%2Fhomer.git diff --git a/Dockerfile b/Dockerfile index 66788b4..0e9d51a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,39 @@ -FROM alpine:3.11 +# build stage +FROM node:lts-alpine as build-stage -COPY ./ /www/ +WORKDIR /app -ENV USER darkhttpd -ENV GROUP darkhttpd -ENV GID 911 -ENV UID 911 +COPY package*.json ./ +RUN yarn install --frozen-lockfile -RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \ - apk add -U darkhttpd +COPY . . +RUN yarn build -USER darkhttpd +# production stage +FROM alpine:3.15 -ENTRYPOINT ["darkhttpd","/www/"] +ENV GID 1000 +ENV UID 1000 +ENV PORT 8080 +ENV SUBFOLDER "/_" +ENV INIT_ASSETS 1 + +RUN addgroup -S lighttpd -g ${GID} && adduser -D -S -u ${UID} lighttpd lighttpd && \ + apk add -U --no-cache lighttpd + +WORKDIR /www + +COPY lighttpd.conf /lighttpd.conf +COPY entrypoint.sh /entrypoint.sh +COPY --from=build-stage --chown=${UID}:${GID} /app/dist /www/ +COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist/assets /www/default-assets + +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} +VOLUME /www/assets + +ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]