We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72edac4 commit 7565fd7Copy full SHA for 7565fd7
1 file changed
epicshop/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM oven/bun:1-debian as base
+FROM node:24-bookworm-slim as base
2
3
RUN apt-get update && apt-get install -y git
4
@@ -18,10 +18,10 @@ RUN git clone --depth 1 ${EPICSHOP_GITHUB_REPO} ${EPICSHOP_CONTEXT_CWD}
18
19
ADD . .
20
21
-RUN bun install --production
+RUN npm install --omit=dev
22
23
RUN cd ${EPICSHOP_CONTEXT_CWD} && \
24
- bunx epicshop warm
+ npx epicshop warm
25
26
CMD cd ${EPICSHOP_CONTEXT_CWD} && \
27
- bunx epicshop start
+ npx epicshop start
0 commit comments