update dockerfile

This commit is contained in:
creations 2025-01-05 21:02:28 -05:00
parent eac9938e9a
commit b87e9333a6
Signed by: creations
GPG key ID: 8F553AA4320FC711

View file

@ -1,15 +1,13 @@
# docker/dev.Dockerfile
FROM oven/bun:latest FROM oven/bun:latest
WORKDIR /app/booru-api WORKDIR /app
COPY package.json ./ COPY package.json ./
COPY bun.lockb ./
RUN bun install RUN test -f bun.lockb && cp bun.lockb . || true
RUN [ -f bun.lockb ] && bun install --frozen-lockfile || bun install
COPY . . COPY . .
ENV NEXT_TELEMETRY_DISABLED 1 CMD ["bun", "run", "start"]
CMD bun run start