mirror of
https://github.com/davidallendj/opaal.git
synced 2025-12-19 19:17:01 -07:00
Fixed static pages not being included in container
This commit is contained in:
parent
9556939495
commit
4f5930ad56
2 changed files with 5 additions and 1 deletions
|
|
@ -23,6 +23,7 @@ dockers:
|
|||
extra_files:
|
||||
- LICENSE.md
|
||||
- README.md
|
||||
- pages/
|
||||
archives:
|
||||
- format: tar.gz
|
||||
rlcp: true
|
||||
|
|
@ -37,6 +38,7 @@ archives:
|
|||
files:
|
||||
- LICENSE.md
|
||||
- README.md
|
||||
- pages/
|
||||
checksum:
|
||||
name_template: 'checksums.txt'
|
||||
snapshot:
|
||||
|
|
|
|||
|
|
@ -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" ]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue