aboutsummaryrefslogtreecommitdiffhomepage
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
parentac1442c640645b1b80b98fc3c25504df439ea1fa (diff)
downloadhomer-d10b219db596bb215db502b42e19443b8924fd56.tar.gz
homer-d10b219db596bb215db502b42e19443b8924fd56.tar.zst
homer-d10b219db596bb215db502b42e19443b8924fd56.zip
copy artifacts later in the build step with permissions
-rw-r--r--Dockerfile4
-rw-r--r--Dockerfile.arm32v73
-rw-r--r--Dockerfile.arm64v83
3 files changed, 6 insertions, 4 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
diff --git a/Dockerfile.arm32v7 b/Dockerfile.arm32v7
index 0b83a06..d1ef138 100644
--- a/Dockerfile.arm32v7
+++ b/Dockerfile.arm32v7
@@ -20,7 +20,6 @@ RUN wget https://github.com/multiarch/qemu-user-static/releases/download/${QEMU_
20FROM arm32v7/alpine:3.11 20FROM arm32v7/alpine:3.11
21 21
22COPY --from=qemu qemu-arm-static /usr/bin/ 22COPY --from=qemu qemu-arm-static /usr/bin/
23COPY --from=build-stage /app/dist /www/
24 23
25ENV USER darkhttpd 24ENV USER darkhttpd
26ENV GROUP darkhttpd 25ENV GROUP darkhttpd
@@ -33,4 +32,6 @@ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} &
33 32
34USER ${USER} 33USER ${USER}
35 34
35COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
36
36ENTRYPOINT ["darkhttpd","/www/","--no-listing"] 37ENTRYPOINT ["darkhttpd","/www/","--no-listing"]
diff --git a/Dockerfile.arm64v8 b/Dockerfile.arm64v8
index c007d04..2f26d09 100644
--- a/Dockerfile.arm64v8
+++ b/Dockerfile.arm64v8
@@ -20,7 +20,6 @@ RUN wget https://github.com/multiarch/qemu-user-static/releases/download/${QEMU_
20FROM arm64v8/alpine:3.11 20FROM arm64v8/alpine:3.11
21 21
22COPY --from=qemu qemu-aarch64-static /usr/bin/ 22COPY --from=qemu qemu-aarch64-static /usr/bin/
23COPY --from=build-stage /app/dist /www/
24 23
25ENV USER darkhttpd 24ENV USER darkhttpd
26ENV GROUP darkhttpd 25ENV GROUP darkhttpd
@@ -33,4 +32,6 @@ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} &
33 32
34USER ${USER} 33USER ${USER}
35 34
35COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
36
36ENTRYPOINT ["darkhttpd","/www/","--no-listing"] 37ENTRYPOINT ["darkhttpd","/www/","--no-listing"]