From 9c2311cc618d6e29451bcd5f5d14737bb4aa5896 Mon Sep 17 00:00:00 2001 From: Petar Date: Thu, 20 Jul 2023 16:15:57 +0200 Subject: [PATCH] alpine image 3.15 --- images/ckan/2.9/Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/images/ckan/2.9/Dockerfile b/images/ckan/2.9/Dockerfile index 33ae654..00fea9b 100644 --- a/images/ckan/2.9/Dockerfile +++ b/images/ckan/2.9/Dockerfile @@ -1,7 +1,7 @@ ################## ### Build CKAN ### ################## -FROM alpine:3.16 as ckanbuild +FROM alpine:3.15 as ckanbuild # Used by Github Actions to tag the image with ENV IMAGE_TAG=2.9.9 @@ -70,7 +70,7 @@ RUN pip wheel --wheel-dir=/wheels uWSGI==2.0.20 gevent==21.12.0 greenlet==1.1.3 ########################### ### Default-Extensions #### ########################### -FROM alpine:3.16 as extbuild +FROM alpine:3.15 as extbuild # Set src dirs ENV SRC_DIR=/srv/app/src @@ -105,7 +105,7 @@ RUN pip wheel --wheel-dir=/wheels git+${ENVVARS_GIT_URL}@${ENVVARS_GIT_BRANCH}#e ############ ### MAIN ### ############ -FROM alpine:3.16 +FROM alpine:3.15 LABEL maintainer="Keitaro Inc " LABEL org.opencontainers.image.source https://github.com/keitaroinc/docker-ckan @@ -154,8 +154,6 @@ RUN addgroup -g 92 -S ckan && \ adduser -u 92 -h /srv/app -H -D -S -G ckan ckan WORKDIR ${CKAN_DIR} -RUN ls -lah /usr/lib/python3.10/collections/ && cat /usr/lib/python3.10/collections/__init__.py -COPY __init__.py /usr/lib/python3.10/collections/__init__.py # Install CKAN RUN pip install -e /srv/app/src/ckan && \