]> git.immae.eu Git - github/bastienwirtz/homer.git/blobdiff - Dockerfile
use env for USER instruction
[github/bastienwirtz/homer.git] / Dockerfile
index 7621639c17956b6c95fdf5147fad9877d484daea..fd1120f6a1229eaaab8d58a70b1933066f757ee5 100644 (file)
@@ -1,6 +1,18 @@
+# build stage
+FROM node:lts-alpine as build-stage
+
+WORKDIR /app
+
+COPY package*.json ./
+RUN yarn install
+
+COPY . .
+RUN yarn build
+
+# production stage
 FROM alpine:3.11
 
-COPY ./ /www/
+COPY --from=build-stage /app/dist /www/
 
 ENV USER darkhttpd
 ENV GROUP darkhttpd
@@ -10,6 +22,6 @@ ENV UID 911
 RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
     apk add -U darkhttpd
 
-USER darkhttpd
+USER ${USER}
 
-ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]
+ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]
\ No newline at end of file