Merge pull request #8 from OpenCHAMI/main

Update docker container to include in compose
This commit is contained in:
David Allen 2024-03-22 16:41:57 -06:00 committed by GitHub
commit a84fc1b4f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,13 +1,16 @@
FROM cgr.dev/chainguard/wolfi-base FROM cgr.dev/chainguard/wolfi-base
RUN apk add --no-cache tini bash RUN apk add --no-cache tini bash curl
RUN mkdir /opaal
RUN chown 65534:65534 /opaal
WORKDIR /opaal
# nobody 65534:65534 # nobody 65534:65534
USER 65534:65534 USER 65534:65534
COPY opaal /opaal/opaal
COPY opaal /opaal CMD [ "/opaal/opaal" ]
CMD [ "/opaal" ] ENTRYPOINT [ "/sbin/tini", "--" ]
ENTRYPOINT [ "/sbin/tini", "--" ]