ckan/ckan/Dockerfile
2022-11-26 14:15:06 +01:00

13 lines
331 B
Docker

FROM ckan/ckan-base:dev-v2.10
#FROM ckan/ckan-base:2.9.7
# Set up environment variables
ENV APP_DIR=/srv/app
ENV TZ=UTC
RUN echo ${TZ} > /etc/timezone
# Make sure both files are not exactly the same
RUN if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then \
cp /usr/share/zoneinfo/${TZ} /etc/localtime ;\
fi ;