Switched back to root image
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Julien Valverdé
2023-09-01 01:44:48 +02:00
parent 9b92f00592
commit b3e3f6b24d
2 changed files with 4 additions and 4 deletions

View File

@@ -7,9 +7,9 @@ RUN apt update -y && \
apt autoremove -y --purge && \
apt clean
COPY ./ ./
COPY ./docker-entrypoint.sh /usr/local/bin
WORKDIR /app
COPY ./ ./
RUN bun install --production --frozen-lockfile --no-cache && \
rm -rf ~/.bun
USER bun:bun

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env sh
set -e
cd ~/app
cd /app
exec bun start /drone/src