File tree 1 file changed +18
-0
lines changed
1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change
1
+ FROM postgres:9.6
2
+
3
+ # install git-lfs
4
+ RUN set -x \
5
+ && apt-get update && apt-get install -y --no-install-recommends ca-certificates curl ssh wget \
6
+ && curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash \
7
+ && apt-get install -y --no-install-recommends git-lfs \
8
+ && rm -rf /var/lib/apt/lists/*
9
+
10
+ # install jq 1.5
11
+ RUN curl -Lo /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 \
12
+ && chmod +x /usr/local/bin/jq
13
+
14
+ # install dockerize
15
+ ENV DOCKERIZE_VERSION v0.5.0
16
+ RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
17
+ && tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
18
+ && rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
You can’t perform that action at this time.
0 commit comments