Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Git to get composer git cache #25

Merged
merged 3 commits into from
Jan 30, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use git from jessie-backports to get composer git cache.
  • Loading branch information
marvil07 committed Jan 20, 2018
commit db99c9ea49235ce817b294bcfbb9a919345bb24f
3 changes: 2 additions & 1 deletion 5.6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ RUN set -xe; \
RUN set -xe; \
apt-get update >/dev/null; apt-get -y --force-yes --no-install-recommends install >/dev/null \
dnsutils \
git \
git-lfs \
ghostscript \
# html2text binary - used for self-testing (php-fpm)
Expand All @@ -78,6 +77,8 @@ RUN set -xe; \
zsh \
yarn \
;\
# More recent version of git to get composer's git cache.
apt-get -y --force-yes --no-install-recommends -t jessie-backports install git >/dev/null
# Cleanup
apt-get clean; rm -rf /var/lib/apt/lists/*

Expand Down
3 changes: 2 additions & 1 deletion 7.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ RUN set -xe; \
RUN set -xe; \
apt-get update >/dev/null; apt-get -y --force-yes --no-install-recommends install >/dev/null \
dnsutils \
git \
git-lfs \
ghostscript \
# html2text binary - used for self-testing (php-fpm)
Expand All @@ -78,6 +77,8 @@ RUN set -xe; \
zsh \
yarn \
;\
# More recent version of git to get composer's git cache.
apt-get -y --force-yes --no-install-recommends -t jessie-backports install git >/dev/null
# Cleanup
apt-get clean; rm -rf /var/lib/apt/lists/*

Expand Down
3 changes: 2 additions & 1 deletion 7.1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ RUN set -xe; \
RUN set -xe; \
apt-get update >/dev/null; apt-get -y --force-yes --no-install-recommends install >/dev/null \
dnsutils \
git \
git-lfs \
ghostscript \
# html2text binary - used for self-testing (php-fpm)
Expand All @@ -78,6 +77,8 @@ RUN set -xe; \
zsh \
yarn \
;\
# More recent version of git to get composer's git cache.
apt-get -y --force-yes --no-install-recommends -t jessie-backports install git >/dev/null
# Cleanup
apt-get clean; rm -rf /var/lib/apt/lists/*

Expand Down
3 changes: 2 additions & 1 deletion 7.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ RUN set -xe; \
RUN set -xe; \
apt-get update >/dev/null; apt-get -y --force-yes --no-install-recommends install >/dev/null \
dnsutils \
git \
git-lfs \
ghostscript \
# html2text binary - used for self-testing (php-fpm)
Expand All @@ -79,6 +78,8 @@ RUN set -xe; \
zsh \
yarn \
;\
# More recent version of git to get composer's git cache.
apt-get -y --force-yes --no-install-recommends -t jessie-backports install git >/dev/null
# Cleanup
apt-get clean; rm -rf /var/lib/apt/lists/*

Expand Down