forked from keitaroinc/docker-ckan
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request keitaroinc#110 from keitaroinc/docker-image-change
changed alpine image to 3.13.7
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
################## | ||
### Build CKAN ### | ||
################## | ||
FROM alpine:3.15 as ckanbuild | ||
FROM alpine:3.13.7 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.15 as extbuild | ||
FROM alpine:3.13.7 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.15 | ||
FROM alpine:3.13.7 | ||
|
||
LABEL maintainer="Keitaro Inc <[email protected]>" | ||
LABEL org.opencontainers.image.source https://github.com/keitaroinc/docker-ckan | ||
|