diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -17,6 +17,7 @@ ENV UID 1000 | |||
17 | ENV PORT 8080 | 17 | ENV PORT 8080 |
18 | ENV SUBFOLDER "/_" | 18 | ENV SUBFOLDER "/_" |
19 | ENV INIT_ASSETS 1 | 19 | ENV INIT_ASSETS 1 |
20 | ENV IPV6_DISABLE 0 | ||
20 | 21 | ||
21 | RUN addgroup -S lighttpd -g ${GID} && adduser -D -S -u ${UID} lighttpd lighttpd && \ | 22 | RUN addgroup -S lighttpd -g ${GID} && adduser -D -S -u ${UID} lighttpd lighttpd && \ |
22 | apk add -U --no-cache lighttpd | 23 | apk add -U --no-cache lighttpd |
@@ -24,7 +25,7 @@ RUN addgroup -S lighttpd -g ${GID} && adduser -D -S -u ${UID} lighttpd lighttpd | |||
24 | WORKDIR /www | 25 | WORKDIR /www |
25 | 26 | ||
26 | COPY lighttpd.conf /lighttpd.conf | 27 | COPY lighttpd.conf /lighttpd.conf |
27 | COPY ipv6.sh /etc/lighttpd/ipv6.sh | 28 | COPY lighttpd-ipv6.sh /etc/lighttpd/ipv6.sh |
28 | COPY entrypoint.sh /entrypoint.sh | 29 | COPY entrypoint.sh /entrypoint.sh |
29 | COPY --from=build-stage --chown=${UID}:${GID} /app/dist /www/ | 30 | COPY --from=build-stage --chown=${UID}:${GID} /app/dist /www/ |
30 | COPY --from=build-stage --chown=${UID}:${GID} /app/dist/assets /www/default-assets | 31 | COPY --from=build-stage --chown=${UID}:${GID} /app/dist/assets /www/default-assets |