We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a99885 commit 5ee13a5Copy full SHA for 5ee13a5
2 files changed
Dockerfile
@@ -1,7 +1,7 @@
1
FROM oven/bun AS base
2
WORKDIR /app
3
COPY package.json package.json
4
-COPY bun.lockb bun.lockb
+COPY bun.lock bun.lock
5
RUN bun install --production --ignore-scripts
6
COPY . .
7
ENTRYPOINT ["bun", "src/main.ts"]
package.json
@@ -8,7 +8,7 @@
8
"gen": "bun run gen:types",
9
"gen:types": "bun run scripts/generate-types.ts",
10
"docker:build": "docker build . -t aklinker1/store-api",
11
- "docker:run": "docker run -it aklinker1/store-api",
+ "docker:run": "docker run -it -p 3000:3000 aklinker1/store-api",
12
"docker:build:amd": "bun docker:build --platform linux/amd64",
13
"docker:push": "bun docker:build --platform linux/amd64 && docker push aklinker1/store-api",
14
"postinstall": "simple-git-hooks",
0 commit comments