Files
drone-better-docker-autotag/Dockerfile
Julien Valverdé 1c482610f4
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Attempt to fix git fetch certificate error
2023-08-31 03:03:29 +02:00

14 lines
361 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 ./ ./
RUN bun install --production --frozen-lockfile --no-cache && \
rm -rf ~/.bun
ENTRYPOINT ["bun", "start", "/drone/src"]