Files
drone-better-docker-autotag/Dockerfile
Julien Valverdé b3e3f6b24d
All checks were successful
continuous-integration/drone/push Build is passing
Switched back to root image
2023-09-01 01:44:48 +02:00

16 lines
376 B
Docker

FROM oven/bun:0.8.1
RUN apt update -y && \
apt full-upgrade -y && \
apt install -y --reinstall ca-certificates && \
apt install -y --no-install-recommends git && \
apt autoremove -y --purge && \
apt clean
COPY ./docker-entrypoint.sh /usr/local/bin
WORKDIR /app
COPY ./ ./
RUN bun install --production --frozen-lockfile --no-cache && \
rm -rf ~/.bun