docker entrypoint fix

This commit is contained in:
tamsin woo 2024-03-23 16:22:30 -07:00
parent 6900c0fcb1
commit 250bd9ab1f
2 changed files with 3 additions and 3 deletions

View File

@ -12,8 +12,8 @@ RUN addgroup -S --gid 10001 mb && \
USER 10000
COPY --from=builder --chown=10000:10001 /go/bin/molly-brown /mb
COPY ./molly.conf /mb/molly.conf
COPY ./entrypoint.sh /mb/entrypoint.sh
COPY --chown=10000:10001 ./molly.conf /mb/molly.conf
COPY --chown=10000:10001 ./entrypoint.sh /mb/entrypoint.sh
ENTRYPOINT entrypoint.sh
ENTRYPOINT /mb/entrypoint.sh
CMD /mb/molly-brown -c /mb/molly.conf

0
entrypoint.sh Normal file → Executable file
View File