Created
June 27, 2019 06:46
-
-
Save mikesorae/2c7ded1c00a984c39387b1ae04da703e to your computer and use it in GitHub Desktop.
Jenkins with psql and gcc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM jenkins/jenkins:lts | |
ARG user=jenkins | |
USER root | |
RUN apt-get update && apt-get upgrade -y && \ | |
apt-get install -y autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm3 libgdbm-dev | |
RUN apt-get install -y postgresql-client | |
USER ${user} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment