]> git.immae.eu Git - github/bastienwirtz/homer.git/blame_incremental - Dockerfile
Merge branch 'master' of github.com:bastienwirtz/homer
[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 darkhttpd
23
24RUN echo "darkhttpd /www/ --no-listing --port $PORT" > /entrypoint.sh
25RUN set -ex chown ${USER}:${GROUP} /entrypoint.sh
26
27USER ${USER}
28
29COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
30
31EXPOSE ${PORT}
32ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]