Skip to content

Commit 72edac4

Browse files
chore: update Dockerfile to use Bun instead of Node (#5)
Co-authored-by: Cursor Agent <cursoragent@cursor.com>
1 parent 3c01d6f commit 72edac4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

epicshop/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:24-bookworm-slim as base
1+
FROM oven/bun:1-debian as base
22

33
RUN apt-get update && apt-get install -y git
44

@@ -18,10 +18,10 @@ RUN git clone --depth 1 ${EPICSHOP_GITHUB_REPO} ${EPICSHOP_CONTEXT_CWD}
1818

1919
ADD . .
2020

21-
RUN npm install --omit=dev
21+
RUN bun install --production
2222

2323
RUN cd ${EPICSHOP_CONTEXT_CWD} && \
24-
npx epicshop warm
24+
bunx epicshop warm
2525

2626
CMD cd ${EPICSHOP_CONTEXT_CWD} && \
27-
npx epicshop start
27+
bunx epicshop start

0 commit comments

Comments
 (0)