]> git.immae.eu Git - github/bastienwirtz/homer.git/blob - Dockerfile
Merge pull request #84 from calvinbui/master
[github/bastienwirtz/homer.git] / Dockerfile
1 # build stage
2 FROM node:lts-alpine as build-stage
3
4 WORKDIR /app
5
6 COPY package*.json ./
7 RUN yarn install --frozen-lockfile
8
9 COPY . .
10 RUN yarn build
11
12 # production stage
13 FROM alpine:3.11
14
15 ENV USER darkhttpd
16 ENV GROUP darkhttpd
17 ENV GID 911
18 ENV UID 911
19
20 RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
21 apk add -U darkhttpd
22
23 USER ${USER}
24
25 COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
26
27 ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]