File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 1
1
# vim:set ft=dockerfile:
2
2
FROM debian:jessie
3
3
4
+ RUN RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
5
+
4
6
RUN set -ex; \
5
7
if ! command -v gpg > /dev/null; then \
6
8
apt-get update; \
7
9
apt-get install -y --no-install-recommends \
10
+ git-lfs \
8
11
gnupg \
9
12
dirmngr \
10
13
; \
@@ -14,6 +17,12 @@ RUN set -ex; \
14
17
# explicitly set user/group IDs
15
18
RUN groupadd -r postgres --gid=999 && useradd -r -g postgres --uid=999 postgres
16
19
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
+
17
26
# grab gosu for easy step-down from root
18
27
ENV GOSU_VERSION 1.10
19
28
RUN set -x \
You can’t perform that action at this time.
0 commit comments