Compare commits

...

2 Commits

Author SHA1 Message Date
843521d1a9 Merge pull request 'fix env loading' (#1) from dev into master
Reviewed-on: #1
2024-12-24 04:07:29 +00:00
55f8f6e55d fix env loading 2024-12-23 22:00:47 -06:00
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 bun i
RUN DATABASE_URL=local.db bun run build
RUN DATABASE_URL=local.db bun --bun run build
RUN ls -a

View File

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