File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 11# vim:set ft=dockerfile:
22FROM debian:jessie
33
4+ RUN RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
5+
46RUN set -ex; \
57 if ! command -v gpg > /dev/null; then \
68 apt-get update; \
79 apt-get install -y --no-install-recommends \
10+ git-lfs \
811 gnupg \
912 dirmngr \
1013 ; \
@@ -14,6 +17,12 @@ RUN set -ex; \
1417# explicitly set user/group IDs
1518RUN groupadd -r postgres --gid=999 && useradd -r -g postgres --uid=999 postgres
1619
20+ # install dockerize
21+ ENV DOCKERIZE_VERSION v0.5.0
22+ RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
23+ && tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
24+ && rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
25+
1726# grab gosu for easy step-down from root
1827ENV GOSU_VERSION 1.10
1928RUN set -x \
You can’t perform that action at this time.
0 commit comments