File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11# checkov:skip=CKV_DOCKER_2:Ensure that HEALTHCHECK instructions have been added to container images
22FROM python:3.13-alpine3.22
33
4- EXPOSE 3141
5- VOLUME /devpi/server
6-
74WORKDIR /opt/devpi
85COPY ./requirements.txt .
96RUN apk --no-cache add \
@@ -12,5 +9,8 @@ RUN apk --no-cache add \
129 libffi-dev=3.4.8-r0 && \
1310 pip install --no-cache-dir -r requirements.txt
1411
12+ EXPOSE 3141
13+ VOLUME /devpi/server
14+
1515ENTRYPOINT ["/usr/local/bin/devpi-server" , "--serverdir=/devpi/server" ]
1616CMD ["--host=0.0.0.0" , "--port=3141" ]
Original file line number Diff line number Diff line change 11# checkov:skip=CKV_DOCKER_2:Ensure that HEALTHCHECK instructions have been added to container images
2- FROM alpine:3.20
2+ FROM alpine:3.22
33
44EXPOSE 123/udp
55
You can’t perform that action at this time.
0 commit comments