Skip to content

Commit

Permalink
Update Dockerfile to install cron for scheduled tasks and upgrade CKA…
Browse files Browse the repository at this point in the history
…N ghcr image to 2.10.5
  • Loading branch information
mjanez authored Sep 23, 2024
1 parent f415ab6 commit c0185a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion ckan/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ RUN echo ${TZ} > /etc/timezone && \
if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then cp /usr/share/zoneinfo/${TZ} /etc/localtime; fi && \
# Install patch utility
apt-get update && \
apt-get install -y patch && \
apt-get install -y patch \
# Install cron for scheduled tasks
cron && \
# Install CKAN extensions
echo "ckan/ckanext-xloader" && \
pip3 install --no-cache-dir -e git+https://github.com/mjanez/[email protected]#egg=ckanext-xloader && \
Expand Down
2 changes: 1 addition & 1 deletion ckan/Dockerfile.ghcr
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/mjanez/ckan-docker:ckan-2.9.11
FROM ghcr.io/mjanez/ckan-docker:ckan-2.10.5
LABEL maintainer="[email protected]"

# Set up environment variables
Expand Down

0 comments on commit c0185a5

Please sign in to comment.