Fixed static pages not being included in container

This commit is contained in:
David J. Allen 2024-04-12 09:44:29 -06:00
parent 9556939495
commit 4f5930ad56
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC
2 changed files with 5 additions and 1 deletions

View file

@ -2,7 +2,7 @@ FROM cgr.dev/chainguard/wolfi-base
RUN apk add --no-cache tini bash curl
RUN mkdir /opaal
RUN mkdir -p /opaal/pages/static/stylesheets
RUN chown 65534:65534 /opaal
WORKDIR /opaal
@ -10,6 +10,8 @@ WORKDIR /opaal
USER 65534:65534
COPY opaal /opaal/opaal
COPY pages/* /opaal/pages/
CMD [ "/opaal/opaal" ]