Files
maps-service/web/Containerfile
Rhys Lloyd 66f02a2f45
Some checks failed
continuous-integration/drone/push Build is failing
docker: update bun
2025-12-05 20:16:51 -08:00

14 lines
190 B
Docker

FROM registry.itzana.me/docker-proxy/oven/bun:1.3.3
WORKDIR /app
COPY . .
EXPOSE 3000
ENV NEXT_TELEMETRY_DISABLED=1
RUN bun install
RUN bun run build
ENTRYPOINT ["bun", "run", "start"]