ci: add Dockerfile and docker build for api
All checks were successful
Build and Push Docker Image / build (push) Successful in 47s
All checks were successful
Build and Push Docker Image / build (push) Successful in 47s
This commit is contained in:
parent
342cd10615
commit
6f0d9fe925
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