Compare commits
2 Commits
e64d9ec31d
...
6f0d9fe925
Author | SHA1 | Date | |
---|---|---|---|
6f0d9fe925 | |||
342cd10615 |
@ -1 +0,0 @@
|
||||
POSTGRES_URL=postgres://postgres:postgres@localhost:5432/postgres
|
11
ci/docker/api/Dockerfile
Normal file
11
ci/docker/api/Dockerfile
Normal file
@ -0,0 +1,11 @@
|
||||
FROM oven/bun:1
|
||||
|
||||
COPY ./build/api .
|
||||
|
||||
ENV HOST=0.0.0.0
|
||||
ENV PORT=3000
|
||||
|
||||
USER bun
|
||||
EXPOSE 3000/tcp
|
||||
|
||||
ENTRYPOINT [ "bun", "run", "index.js" ]
|
@ -9,7 +9,10 @@
|
||||
"build": "bun --filter '*' build",
|
||||
"docker:website:build": "docker build -t git.hashdot.co/boring.tools/boring.tools/website -f ci/docker/website/Dockerfile .",
|
||||
"docker:website:push": "docker push git.hashdot.co/boring.tools/boring.tools/website",
|
||||
"docker:website": "bun docker:website:build && bun docker:website:push"
|
||||
"docker:website": "bun docker:website:build && bun docker:website:push",
|
||||
"docker:api:build": "docker build -t git.hashdot.co/boring.tools/boring.tools/api -f ci/docker/api/Dockerfile .",
|
||||
"docker:api:push": "docker push git.hashdot.co/boring.tools/boring.tools/api",
|
||||
"docker:api": "bun docker:api:build && bun docker:api:push"
|
||||
},
|
||||
"packageManager": "bun@1.1.29",
|
||||
"workspaces": [
|
||||
|
Loading…
Reference in New Issue
Block a user