aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
diff options
context:
space:
mode:
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