Skip to content

Commit 5ee13a5

Browse files
committed
ci: Fix dockerfile
1 parent 9a99885 commit 5ee13a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM oven/bun AS base
22
WORKDIR /app
33
COPY package.json package.json
4-
COPY bun.lockb bun.lockb
4+
COPY bun.lock bun.lock
55
RUN bun install --production --ignore-scripts
66
COPY . .
77
ENTRYPOINT ["bun", "src/main.ts"]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"gen": "bun run gen:types",
99
"gen:types": "bun run scripts/generate-types.ts",
1010
"docker:build": "docker build . -t aklinker1/store-api",
11-
"docker:run": "docker run -it aklinker1/store-api",
11+
"docker:run": "docker run -it -p 3000:3000 aklinker1/store-api",
1212
"docker:build:amd": "bun docker:build --platform linux/amd64",
1313
"docker:push": "bun docker:build --platform linux/amd64 && docker push aklinker1/store-api",
1414
"postinstall": "simple-git-hooks",

0 commit comments

Comments
 (0)