Hello all,
I am having some issues creating a docker image with a fresh cache installation. The error that I am getting right now is that gzip is required for a cache installation, but was not found in my system. Even though, this is shown as installed in the base centos 7 image. My host machine is Windows 10 using the latest docker version.
Here is my dockerfile, its simple:
FROM centos:latest
RUN yum update -y && yum -y upgrade
COPY ./cache-2017.1.3.317.0.18571-lnxrhx64.tar.gz .
RUN tar -zxf cache-2017.1.3.317.0.18571-lnxrhx64.tar.gz
RUN ISC_PACKAGE_INSTANCENAME="MyDatabase" \
ISC_PACKAGE_INSTALLDIR="/usr/cachesys/" \
ISC_PACKAGE_UNICODE="Y" \
ISC_PACKAGE_CLIENT_COMPONENTS="" \
ISC_PACKAGE_INITIAL_SECURITY="Minimal" \
/cache-2017.1.3.317.0.18571-lnxrhx64/cinstall_silent
EXPOSE 57772 22 1972
ENTRYPOINT ["ccontrol", "start cache"]