mirror of
https://github.com/bastienwirtz/homer.git
synced 2026-01-23 02:15:09 +00:00
Added entrypoint script and Dockerfile port&volume
This commit is contained in:
parent
5f71d1ea01
commit
29d6b359ab
4 changed files with 15 additions and 15 deletions
|
|
@ -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
|
||||
COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
|
||||
COPY --chown=${USER}:${GROUP} entrypoint.sh /entrypoint.sh
|
||||
|
||||
USER ${USER}
|
||||
|
||||
COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
|
||||
|
||||
EXPOSE ${PORT}
|
||||
VOLUME [ "/www/config.yml", "/www/assets" ]
|
||||
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue