Files
maps-service/web/Containerfile
Rhys Lloyd c17f3b9f08
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
give up on fixing frontend docker
2025-08-05 22:45:08 -07:00

14 lines
190 B
Docker

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