Docker for ckan 2.8.0

This commit is contained in:
Marko Bocevski 2018-05-22 14:53:09 +02:00
parent 5f8d060fc3
commit 42d17a659d
1 changed files with 4 additions and 3 deletions

View File

@ -1,11 +1,11 @@
##################
### Build CKAN ###
##################
FROM alpine:3.6 as ckanbuild
FROM alpine:3.7 as ckanbuild
# Set CKAN version to build
ENV GIT_URL=https://github.com/ckan/ckan.git
ENV GIT_BRANCH=ckan-2.7.2
ENV GIT_BRANCH=ckan-2.8.0
# Set src dirs
ENV SRC_DIR=/srv/app/src
@ -46,7 +46,7 @@ RUN pip wheel --wheel-dir=/wheels uwsgi gevent
############
### MAIN ###
############
FROM alpine:3.6
FROM alpine:3.7
MAINTAINER Keitaro Inc <info@keitaro.com>
@ -64,6 +64,7 @@ RUN apk add --no-cache git \
curl \
postgresql-client \
python \
libmagic \
apache2-utils && \
# Create SRC_DIR
mkdir -p ${SRC_DIR}