Skip to content

Commit 83cc74a

Browse files
committed
chore: add required python deps to dockerfile
1 parent 071dd7b commit 83cc74a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
FROM node:22-alpine
2-
RUN apk add --no-cache curl
2+
3+
# Install curl, Python and build tools
4+
RUN apk add --no-cache curl python3 make g++
35

46
# Set the working directory
57
WORKDIR /app
8+
69
# Copy package.json and package-lock.json
710
COPY package.json package-lock.json ./
811

0 commit comments

Comments
 (0)