We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3c0a03 commit 3170b64Copy full SHA for 3170b64
1 file changed
Dockerfile
@@ -1,4 +1,4 @@
1
-ARG NODE_VERSION=22-bullseye-slim
+ARG NODE_VERSION=22.14.0-bookworm-slim
2
3
# Use separate builder to retrieve & build node modules
4
FROM node:${NODE_VERSION} AS builder
@@ -34,6 +34,7 @@ RUN apt-get update && \
34
jq \
35
python3 \
36
python3-pip \
37
+ python3-venv \
38
&& rm -rf /var/lib/apt/lists/*
39
40
ENV BALLOT_VERSION 1.0.4
@@ -48,6 +49,8 @@ COPY --from=builder /usr/src/app/supervisord /usr/local/bin/
48
49
ENV NO_PROXY localhost,127.0.0.1
50
ENV no_proxy localhost,127.0.0.1
51
52
+RUN python3 -m venv /opt/venv
53
+ENV PATH="/opt/venv/bin:$PATH"
54
RUN pip install -r utapi/requirements.txt
55
56
## This section duplicates S3C Federation Dockerfile, this needs to be refactored
0 commit comments