Commit 99be0e8 1 parent 64a5b72 commit 99be0e8 Copy full SHA for 99be0e8
File tree 3 files changed +35
-3
lines changed
3 files changed +35
-3
lines changed Original file line number Diff line number Diff line change 1
-
1
+ ARG BASEIMAGE_REPOSITORY=ghcr.io/tum-gis/ckan-sddi-base
2
2
ARG BASEIMAGE_VERSION=edge
3
- ARG CKAN_VERSION=2.9.7
4
- FROM ghcr.io/tum-gis/ckan-sddi-base :${BASEIMAGE_VERSION}
3
+
4
+ FROM ${BASEIMAGE_REPOSITORY} :${BASEIMAGE_VERSION}
5
5
6
6
USER root
7
7
Original file line number Diff line number Diff line change
1
+ ARG BASEIMAGE_REPOSITORY=ghcr.io/tum-gis/ckan-sddi-social
2
+ ARG BASEIMAGE_VERSION=edge
3
+
4
+ FROM ${BASEIMAGE_REPOSITORY}:${BASEIMAGE_VERSION}
5
+
6
+ USER root
7
+
8
+ ADD https://raw.githubusercontent.com/ckan/ckan/ckan-2.9.7/dev-requirements.txt /dev-requirements.txt
9
+ RUN set -ex && \
10
+ pip install -r /dev-requirements.txt && \
11
+ rm /dev-requirements.txt
12
+
13
+ RUN set -ex && \
14
+ ckan config-tool "${CKAN_INI}" "debug = True"
15
+
16
+ USER ckan
Original file line number Diff line number Diff line change
1
+ ARG BASEIMAGE_REPOSITORY=ghcr.io/tum-gis/ckan-sddi
2
+ ARG BASEIMAGE_VERSION=edge
3
+
4
+ FROM ${BASEIMAGE_REPOSITORY}:${BASEIMAGE_VERSION}
5
+
6
+ USER root
7
+
8
+ ADD https://raw.githubusercontent.com/ckan/ckan/ckan-2.9.7/dev-requirements.txt /dev-requirements.txt
9
+ RUN set -ex && \
10
+ pip install -r /dev-requirements.txt && \
11
+ rm /dev-requirements.txt
12
+
13
+ RUN set -ex && \
14
+ ckan config-tool "${CKAN_INI}" "debug = True"
15
+
16
+ USER ckan
You can’t perform that action at this time.
0 commit comments