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

Merge branch 'INPLATFORM-387-timezone' into 'master'

Add Timezone to Docker Image - INPLATFORM-387

See merge request !29
parents ea0b72be 05c20dec
No related branches found
No related tags found
1 merge request!29Add Timezone to Docker Image - INPLATFORM-387
......@@ -3,7 +3,7 @@ FROM ubuntu:18.04
# 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.
# The values for POD and REGION probably need changing for you. Setting these as
......@@ -13,6 +13,7 @@ ARG POD=usw3
ARG REGION=dm-us
ENV POD=$POD
ENV REGION=$REGION
ENV TZ=America/Chicago
# 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
# install system tools
RUN apt-get update && apt-get install -y \
curl \
jq \
less \
libsqliteodbc \
locales \
locales-all \
sqlite3 \
sudo \
tzdata \
unzip \
jq \
sqlite3 \
libsqliteodbc \
wget
RUN ln -fs /usr/share/zoneinfo/$TZ /etc/localtime \
&& dpkg-reconfigure -f noninteractive tzdata
# 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 && \
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