update dockerfile
This commit is contained in:
parent
eac9938e9a
commit
b87e9333a6
1 changed files with 5 additions and 7 deletions
12
Dockerfile
12
Dockerfile
|
@ -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
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue