]> git.immae.eu Git - github/bastienwirtz/homer.git/blame_incremental - Dockerfile
freeze-lockfile option on yarn
[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
19
20RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
21 apk add -U darkhttpd
22
23USER ${USER}
24
25COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
26
27ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]