give up on fixing frontend docker
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
2025-08-05 22:45:08 -07:00
parent 31cb481778
commit c17f3b9f08

View File

@@ -1,8 +1,13 @@
FROM oven/bun:1.2.8
RUN apt-get update
RUN apt-get install -y nodejs
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"]