homer/Dockerfile

40 lines
860 B
Docker
Raw Normal View History

# build stage
FROM node:lts-alpine as build-stage
WORKDIR /app
COPY package*.json ./
2020-06-11 01:42:56 +00:00
RUN yarn install --frozen-lockfile
COPY . .
RUN yarn build
# production stage
2023-09-25 20:14:25 +00:00
FROM alpine:3.18
2020-01-21 20:29:57 +00:00
ENV GID 1000
ENV UID 1000
2020-06-12 16:50:07 +00:00
ENV PORT 8080
2022-03-20 20:46:36 +00:00
ENV SUBFOLDER "/_"
ENV INIT_ASSETS 1
2020-01-21 20:29:57 +00:00
RUN addgroup -S lighttpd -g ${GID} && adduser -D -S -u ${UID} lighttpd lighttpd && \
2021-12-09 12:09:09 +00:00
apk add -U --no-cache lighttpd
2020-01-21 20:29:57 +00:00
WORKDIR /www
COPY lighttpd.conf /lighttpd.conf
2023-09-08 05:44:07 +00:00
COPY ipv6.sh /etc/lighttpd/ipv6.sh
COPY entrypoint.sh /entrypoint.sh
COPY --from=build-stage --chown=${UID}:${GID} /app/dist /www/
2022-04-30 13:58:04 +00:00
COPY --from=build-stage --chown=${UID}:${GID} /app/dist/assets /www/default-assets
USER ${UID}:${GID}
2021-10-06 20:55:53 +00:00
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
2021-08-15 13:34:17 +00:00
CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:${PORT}/ || exit 1
2020-06-12 16:50:07 +00:00
EXPOSE ${PORT}
2020-06-12 16:50:07 +00:00
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]