Update Dockerfile.dev
This commit is contained in:
parent
b3ea1d2fac
commit
b1ef0b736b
|
@ -60,10 +60,6 @@ COPY setup/who.ini ./
|
||||||
COPY setup/start_ckan_development.sh.override start_ckan_development.sh
|
COPY setup/start_ckan_development.sh.override start_ckan_development.sh
|
||||||
RUN chmod +x start_ckan_development.sh
|
RUN chmod +x start_ckan_development.sh
|
||||||
|
|
||||||
# Apply any patches needed to CKAN core or any of the built extensions (not the
|
|
||||||
# runtime mounted ones)
|
|
||||||
COPY patches patches
|
|
||||||
|
|
||||||
# Apply any patches needed to CKAN core or any of the built extensions (not the
|
# Apply any patches needed to CKAN core or any of the built extensions (not the
|
||||||
# runtime mounted ones!)
|
# runtime mounted ones!)
|
||||||
COPY patches patches
|
COPY patches patches
|
||||||
|
@ -71,12 +67,12 @@ COPY patches patches
|
||||||
RUN for d in $APP_DIR/patches/*; do \
|
RUN for d in $APP_DIR/patches/*; do \
|
||||||
if [ -d $d ]; then \
|
if [ -d $d ]; then \
|
||||||
for f in `ls $d/*.patch | sort -g`; do \
|
for f in `ls $d/*.patch | sort -g`; do \
|
||||||
if [ -d $SRC_EXTENSIONS_DIR/`basename "$d"` ]; then \
|
if [ -d $SRC_DIR/`basename "$d"` ]; then \
|
||||||
cd $SRC_EXTENSIONS_DIR/`basename "$d"` && \
|
cd $SRC_DIR/`basename "$d"` && \
|
||||||
echo "$0: Applying patch $f to $SRC_EXTENSIONS_DIR/`basename $d`" && \
|
echo "$0: Applying patch $f to $SRC_DIR/`basename $d`" && \
|
||||||
patch -p1 < "$f" ; \
|
patch -p1 < "$f" ; \
|
||||||
else \
|
else \
|
||||||
echo "$0: Skipping patch $f because directory $SRC_EXTENSIONS_DIR/`basename $d` does not exist. Built the extension: `basename $d`" ; \
|
echo "$0: Skipping patch $f because directory $SRC_DIR/`basename $d` does not exist. Built the extension: `basename $d`" ; \
|
||||||
fi \
|
fi \
|
||||||
done ; \
|
done ; \
|
||||||
fi ; \
|
fi ; \
|
||||||
|
|
Loading…
Reference in New Issue