We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 563f1e5 commit 11be3beCopy full SHA for 11be3be
Dockerfile
@@ -1,5 +1,7 @@
1
FROM node:20-slim
2
3
+RUN apt-get update && apt-get install -y make
4
+
5
ENV PNPM_HOME="/pnpm"
6
ENV PATH="$PNPM_HOME:$PATH"
7
@@ -9,7 +11,7 @@ RUN pnpm config set store-dir /home/node/.local/share/pnpm/store
9
11
10
12
WORKDIR /app
13
-COPY package.json pnpm-lock.yaml ./
-RUN pnpm install
14
+COPY Makefile package.json pnpm-lock.yaml ./
15
+RUN make install
16
17
RUN mkdir -p /app/src
0 commit comments