Skip to content

Commit

Permalink
updating postgres to 10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Sep 19, 2018
1 parent 1e48c08 commit 5577c4b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion wc_env_manager/assets/base_image/Dockerfile.template
Expand Up @@ -113,7 +113,19 @@ RUN apt-get update -y \
{% if postgresql_client_install -%}
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends \
postgresql-client \
gnupg \
wget \
&& ubuntu_version=`cat /etc/lsb-release | grep DISTRIB_CODENAME | cut -d "=" -f 2` \
&& wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
&& echo "deb http://apt.postgresql.org/pub/repos/apt/ ${ubuntu_version}-pgdg main" >> /etc/apt/sources.list.d/pgdg_${ubuntu_version}.list \
&& apt-get update -y \
&& apt-get install -y --no-install-recommends \
postgresql-client-10 \
\
&& apt-get remove -y \
gnupg \
wget \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/*
{%- endif %}

Expand Down
4 changes: 2 additions & 2 deletions wc_env_manager/config/core.default.cfg
Expand Up @@ -5,7 +5,7 @@
[[base_image]]
repo_unsquashed = karrlab/wc_env_dependencies_unsquashed
repo = karrlab/wc_env_dependencies
tags = 'latest', '0.0.42'
tags = 'latest', '0.0.43'
dockerfile_template_path = ${ROOT}/assets/base_image/Dockerfile.template
context_path = ${ROOT}/assets/base_image/
[[[build_args]]]
Expand Down Expand Up @@ -59,7 +59,7 @@

[[image]]
repo = karrlab/wc_env
tags = 'latest', '0.0.42'
tags = 'latest', '0.0.43'
dockerfile_template_path = ${ROOT}/assets/image/Dockerfile.template
config_path = ${HOME}/.wc/
ssh_key_path = /root/.ssh/id_rsa
Expand Down

0 comments on commit 5577c4b

Please sign in to comment.