Files
maps-service/web/Containerfile
2024-12-12 14:24:07 -08:00

13 lines
158 B
Docker

FROM oven/bun:latest
WORKDIR /app
COPY . .
EXPOSE 3000
ENV NEXT_TELEMETRY_DISABLED=1
RUN bun install
RUN bun run build
ENTRYPOINT ["bun", "run", "start"]