Docker entrypoint fix
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Julien Valverdé
2023-09-01 01:29:56 +02:00
parent 7687240ba3
commit 9b92f00592
2 changed files with 6 additions and 1 deletions

View File

@@ -8,8 +8,8 @@ RUN apt update -y && \
apt clean
COPY ./ ./
COPY ./docker-entrypoint.sh /usr/local/bin
RUN bun install --production --frozen-lockfile --no-cache && \
rm -rf ~/.bun
USER bun:bun
CMD ["start", "/drone/src"]