fix env loading

This commit is contained in:
themodernhakr 2024-12-23 22:00:47 -06:00
parent 67f4abd986
commit 55f8f6e55d
2 changed files with 2 additions and 3 deletions

View File

@ -8,7 +8,7 @@ RUN apt update
RUN apt install build-essential python3 -y RUN apt install build-essential python3 -y
RUN bun i RUN bun i
RUN DATABASE_URL=local.db bun run build RUN DATABASE_URL=local.db bun --bun run build
RUN ls -a RUN ls -a

View File

@ -7,7 +7,6 @@ services:
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
environment: env_file: .env
- DATABASE_URL=local.db
ports: ports:
- '${PORT}:3000' - '${PORT}:3000'