Skip to content

Commit

Permalink
Added entrypoint script and Dockerfile port&volume
Browse files Browse the repository at this point in the history
  • Loading branch information
GlennToms committed Jun 18, 2020
1 parent 5f71d1e commit 29d6b35
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
8 changes: 3 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,10 @@ ENV PORT 8080
RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
apk add -U darkhttpd

RUN echo "darkhttpd /www/ --no-listing --port $PORT" > /entrypoint.sh
RUN set -ex chown ${USER}:${GROUP} /entrypoint.sh

USER ${USER}

COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
COPY --chown=${USER}:${GROUP} entrypoint.sh /entrypoint.sh

USER ${USER}
EXPOSE ${PORT}
VOLUME [ "/www/config.yml", "/www/assets" ]
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]
8 changes: 3 additions & 5 deletions Dockerfile.arm32v7
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,10 @@ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} &
apk add -U darkhttpd && \
rm /usr/bin/qemu-arm-static

RUN echo "darkhttpd /www/ --no-listing --port $PORT" > /entrypoint.sh
RUN set -ex chown ${USER}:${GROUP} /entrypoint.sh

USER ${USER}

COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
COPY --chown=${USER}:${GROUP} entrypoint.sh /entrypoint.sh

USER ${USER}
EXPOSE ${PORT}
VOLUME [ "/www/config.yml", "/www/assets" ]
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]
8 changes: 3 additions & 5 deletions Dockerfile.arm64v8
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,10 @@ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} &
apk add -U darkhttpd && \
rm /usr/bin/qemu-aarch64-static

RUN echo "darkhttpd /www/ --no-listing --port $PORT" > /entrypoint.sh
RUN set -ex chown ${USER}:${GROUP} /entrypoint.sh

USER ${USER}

COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
COPY --chown=${USER}:${GROUP} entrypoint.sh /entrypoint.sh

USER ${USER}
EXPOSE ${PORT}
VOLUME [ "/www/config.yml", "/www/assets" ]
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]
6 changes: 6 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh

yes n | cp -i /www/config.yml.dist /www/config.yml
while true; do echo n; done | cp -Ri /app/dist/www/assets /www/assets 2>/dev/null

darkhttpd /www/ --no-listing --port $PORT

0 comments on commit 29d6b35

Please sign in to comment.