File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
FROM oven/bun AS base
2
2
WORKDIR /app
3
3
COPY package.json package.json
4
- COPY bun.lockb bun.lockb
4
+ COPY bun.lock bun.lock
5
5
RUN bun install --production --ignore-scripts
6
6
COPY . .
7
7
ENTRYPOINT ["bun" , "src/main.ts" ]
Original file line number Diff line number Diff line change 8
8
"gen" : " bun run gen:types" ,
9
9
"gen:types" : " bun run scripts/generate-types.ts" ,
10
10
"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" ,
12
12
"docker:build:amd" : " bun docker:build --platform linux/amd64" ,
13
13
"docker:push" : " bun docker:build --platform linux/amd64 && docker push aklinker1/store-api" ,
14
14
"postinstall" : " simple-git-hooks" ,
You can’t perform that action at this time.
0 commit comments