Skip to content

Commit 7565fd7

Browse files
committed
Revert "chore: update Dockerfile to use Bun instead of Node (#5)"
This reverts commit 72edac4.
1 parent 72edac4 commit 7565fd7

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 oven/bun:1-debian as base
1+
FROM node:24-bookworm-slim 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 bun install --production
21+
RUN npm install --omit=dev
2222

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

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

0 commit comments

Comments
 (0)