aboutsummaryrefslogblamecommitdiffhomepage
path: root/Dockerfile
blob: 205d759fe2c02e463e07455ff86d09bfa85d800d (plain) (tree)
1
2
3
4
5
6
7





                                   
                                  




                  

                

                   





                                                                                   
            
 

                                                                
                                               
# build stage
FROM node:lts-alpine as build-stage

WORKDIR /app

COPY package*.json ./
RUN yarn install --frozen-lockfile

COPY . .
RUN yarn build

# production stage
FROM alpine:3.11

ENV USER darkhttpd
ENV GROUP darkhttpd
ENV GID 911
ENV UID 911

RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
    apk add -U darkhttpd

USER ${USER}

COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/

ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]