Files
drone-better-docker-autotag/Dockerfile
Julien Valverdé cfd90744bc
Some checks failed
continuous-integration/drone Build is passing
continuous-integration/drone/tag Build is failing
Initial version
2023-08-31 02:16:43 +02:00

13 lines
309 B
Docker

FROM oven/bun:0.8.1
RUN apt update -y && \
apt full-upgrade -y && \
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"]