Skip to content
Snippets Groups Projects
Commit 05c20dec authored by Eric Schoville's avatar Eric Schoville
Browse files

Add Timezone to Docker Image - INPLATFORM-387

parent ea0b72be
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ FROM ubuntu:18.04 ...@@ -3,7 +3,7 @@ FROM ubuntu:18.04
# From https://github.com/jbrazda/ic-sagent-docker # From https://github.com/jbrazda/ic-sagent-docker
MAINTAINER Eric Schoville <> LABEL maintainer="doit-integration-platform@office365.wisc.edu"
# POD and REGION can be inferred from the web URL of your Informatica Cloud site. # POD and REGION can be inferred from the web URL of your Informatica Cloud site.
# The values for POD and REGION probably need changing for you. Setting these as # The values for POD and REGION probably need changing for you. Setting these as
...@@ -13,6 +13,7 @@ ARG POD=usw3 ...@@ -13,6 +13,7 @@ ARG POD=usw3
ARG REGION=dm-us ARG REGION=dm-us
ENV POD=$POD ENV POD=$POD
ENV REGION=$REGION ENV REGION=$REGION
ENV TZ=America/Chicago
# You should be able to download the Secure Agent binary from the following URL without authentication: # You should be able to download the Secure Agent binary from the following URL without authentication:
...@@ -23,16 +24,20 @@ ENV INFA_HOME=/home/$USER/infaagent ...@@ -23,16 +24,20 @@ ENV INFA_HOME=/home/$USER/infaagent
# install system tools # install system tools
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
curl \ curl \
jq \
less \ less \
libsqliteodbc \
locales \ locales \
locales-all \ locales-all \
sqlite3 \
sudo \ sudo \
tzdata \
unzip \ unzip \
jq \
sqlite3 \
libsqliteodbc \
wget wget
RUN ln -fs /usr/share/zoneinfo/$TZ /etc/localtime \
&& dpkg-reconfigure -f noninteractive tzdata
# Snowflake ODBC # Snowflake ODBC
RUN wget --no-directories --recursive --level=1 --no-parent --accept 'snowflake-odbc*.deb' https://sfc-repo.snowflakecomputing.com/odbc/linux/latest/index.html && \ RUN wget --no-directories --recursive --level=1 --no-parent --accept 'snowflake-odbc*.deb' https://sfc-repo.snowflakecomputing.com/odbc/linux/latest/index.html && \
dpkg -i --ignore-depends=unixodbc snowflake-odbc*.deb && \ dpkg -i --ignore-depends=unixodbc snowflake-odbc*.deb && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment