]> git.immae.eu Git - github/bastienwirtz/homer.git/blame_incremental - Dockerfile
Bump dns-packet from 1.3.1 to 1.3.4
[github/bastienwirtz/homer.git] / Dockerfile
... / ...
CommitLineData
1# build stage
2FROM node:lts-alpine as build-stage
3
4WORKDIR /app
5
6COPY package*.json ./
7RUN yarn install --frozen-lockfile
8
9COPY . .
10RUN yarn build
11
12# production stage
13FROM alpine:3.11
14
15ENV USER darkhttpd
16ENV GROUP darkhttpd
17ENV GID 911
18ENV UID 911
19ENV PORT 8080
20
21RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
22 apk add -U --no-cache su-exec darkhttpd
23
24COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
25COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist/assets /www/default-assets
26COPY entrypoint.sh /entrypoint.sh
27
28EXPOSE ${PORT}
29VOLUME /www/assets
30ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]