homer/Dockerfile

31 lines
678 B
Docker
Raw Normal View History

# build stage
FROM node:lts-alpine as build-stage
WORKDIR /app
COPY package*.json ./
2020-06-11 03:42:56 +02:00
RUN yarn install --frozen-lockfile
COPY . .
RUN yarn build
# production stage
2020-01-21 21:29:57 +01:00
FROM alpine:3.11
2020-02-01 08:55:49 +01:00
ENV USER darkhttpd
ENV GROUP darkhttpd
2020-01-21 21:29:57 +01:00
ENV GID 911
ENV UID 911
2020-06-12 18:50:07 +02:00
ENV PORT 8080
2020-01-21 21:29:57 +01:00
RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
apk add -U --no-cache su-exec darkhttpd
2020-01-21 21:29:57 +01:00
COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist/assets /www/default-assets
COPY --chown=${USER}:${GROUP} entrypoint.sh /entrypoint.sh
2020-06-12 18:50:07 +02:00
EXPOSE ${PORT}
VOLUME /www/assets
2020-06-12 18:50:07 +02:00
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]