fix: use env instaed of arg

This commit is contained in:
2025-01-22 04:10:57 +01:00
parent 70cd65d30b
commit ed037bea17

View File

@@ -1,13 +1,15 @@
FROM oven/bun AS builder
RUN bun
WORKDIR /app
COPY package.json bun.lockb ./
RUN bun install
COPY . .
ARG DB_URL
ARG AUTH_TOKEN
ENV DB_URL=''
ENV AUTH_TOKEN=''
RUN bun run build