From d10b219db596bb215db502b42e19443b8924fd56 Mon Sep 17 00:00:00 2001 From: Calvin Bui <3604363+calvinbui@users.noreply.github.com> Date: Thu, 11 Jun 2020 11:32:24 +1000 Subject: copy artifacts later in the build step with permissions --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index fd1120f..29fda0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,6 @@ RUN yarn build # production stage FROM alpine:3.11 -COPY --from=build-stage /app/dist /www/ - ENV USER darkhttpd ENV GROUP darkhttpd ENV GID 911 @@ -24,4 +22,6 @@ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} & USER ${USER} +COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/ + ENTRYPOINT ["darkhttpd","/www/", "--no-listing"] \ No newline at end of file -- cgit v1.2.3