fix: use github secrets for db credentials

This commit is contained in:
2025-01-11 17:39:59 +01:00
parent 00a99e73ea
commit a533d132fb
2 changed files with 15 additions and 11 deletions

View File

@@ -6,9 +6,9 @@ COPY package.json bun.lockb ./
RUN bun install
COPY . .
ENV DB_HOST=host
ENV DB_USER=user
ENV DB_PASSWORD=password
ARG DB_HOST
ARG DB_USER
ARG DB_PASSWORD
RUN bun run build