Skip to content

Commit ccad195

Browse files
authored
Update Dockerfile to include Python dependencies
Added py3-setuptools and py3-pip to Dockerfile.
1 parent e252aa2 commit ccad195

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ FROM node:24.7.0-alpine3.22 AS build
33
WORKDIR /usr/src/app
44
COPY package.json package-lock.json ./
55

6-
RUN apk add --upgrade python3 build-base \
6+
RUN apk add --upgrade python3 build-base py3-setuptools py3-pip && \
7+
pip3 install setuptools \
78
&& npm install
89
COPY . .
910
RUN npm run build --configuration=production
1011

12+
1113
FROM wurstbrot/dsomm-yaml-generation:1.16.0 AS yaml
1214

1315
FROM caddy:2.10.2

0 commit comments

Comments
 (0)