Skip to content

Commit 5b8720c

Browse files
committed
install git-lfs and dockerize
1 parent 4566cb0 commit 5b8720c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

9.6/Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# vim:set ft=dockerfile:
22
FROM debian:jessie
33

4+
RUN RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
5+
46
RUN 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
1518
RUN 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
1827
ENV GOSU_VERSION 1.10
1928
RUN set -x \

0 commit comments

Comments
 (0)