homer/Dockerfile

33 lines
630 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 darkhttpd
2020-06-12 18:50:07 +02:00
RUN echo "darkhttpd /www/ --no-listing --port $PORT" > /entrypoint.sh
RUN set -ex chown ${USER}:${GROUP} /entrypoint.sh
2020-06-11 03:31:46 +02:00
USER ${USER}
2020-01-21 21:29:57 +01:00
COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
2020-06-12 18:50:07 +02:00
EXPOSE ${PORT}
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]