aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
diff options
context:
space:
mode:
authorCalvin Bui <3604363+calvinbui@users.noreply.github.com>2020-06-11 11:32:24 +1000
committerCalvin Bui <3604363+calvinbui@users.noreply.github.com>2020-06-11 11:32:24 +1000
commitd10b219db596bb215db502b42e19443b8924fd56 (patch)
tree264865a94d870f203a2cf26dae230d2f58a5bd28 /Dockerfile
parentac1442c640645b1b80b98fc3c25504df439ea1fa (diff)
downloadhomer-d10b219db596bb215db502b42e19443b8924fd56.tar.gz
homer-d10b219db596bb215db502b42e19443b8924fd56.tar.zst
homer-d10b219db596bb215db502b42e19443b8924fd56.zip
copy artifacts later in the build step with permissions
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index fd1120f..29fda0e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -12,8 +12,6 @@ RUN yarn build
12# production stage 12# production stage
13FROM alpine:3.11 13FROM alpine:3.11
14 14
15COPY --from=build-stage /app/dist /www/
16
17ENV USER darkhttpd 15ENV USER darkhttpd
18ENV GROUP darkhttpd 16ENV GROUP darkhttpd
19ENV GID 911 17ENV GID 911
@@ -24,4 +22,6 @@ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} &
24 22
25USER ${USER} 23USER ${USER}
26 24
25COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
26
27ENTRYPOINT ["darkhttpd","/www/", "--no-listing"] \ No newline at end of file 27ENTRYPOINT ["darkhttpd","/www/", "--no-listing"] \ No newline at end of file