Skip to content

Commit eb3f037

Browse files
committed
fix: docker: bun -> node
1 parent 55032eb commit eb3f037

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docker/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
FROM oven/bun
1+
FROM node:lts-buster-slim
22
LABEL maintainer="Coderaiser"
33

44
RUN mkdir -p /usr/src/app
55
WORKDIR /usr/src/app
66

77
COPY package.json /usr/src/app/
88

9-
RUN bun install --production --no-save && \
10-
bun i gritty --no-save && \
11-
bun pm cache rm
9+
RUN npm config set package-lock false && \
10+
npm install --production && \
11+
npm i gritty && \
12+
npm cache clean --force && \
1213

1314
COPY . /usr/src/app
1415

0 commit comments

Comments
 (0)