From 86bad3c9c94be61ebfe51f4f58007bf08bad073d Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Mon, 28 Dec 2020 19:32:58 -0700 Subject: [PATCH] Add git to install images --- alpine-install/Dockerfile | 2 +- source-install/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/alpine-install/Dockerfile b/alpine-install/Dockerfile index 610720c..183dd2d 100644 --- a/alpine-install/Dockerfile +++ b/alpine-install/Dockerfile @@ -12,4 +12,4 @@ LABEL author="Matthew Penner" maintainer="matthew@pterodactyl.io" LABEL org.opencontainers.image.source="https://github.com/matthewpi/images" LABEL org.opencontainers.image.licenses=MIT -RUN apk add --update --no-cache ca-certificates curl jq wget +RUN apk add --update --no-cache ca-certificates curl git jq wget diff --git a/source-install/Dockerfile b/source-install/Dockerfile index 9128780..7437b14 100644 --- a/source-install/Dockerfile +++ b/source-install/Dockerfile @@ -17,4 +17,4 @@ ENV DEBIAN_FRONTEND=noninteractive RUN dpkg --add-architecture i386 \ && apt update \ && apt upgrade -y \ - && apt -y --no-install-recommends install curl lib32gcc1 libsdl2-2.0-0:i386 ca-certificates + && apt -y --no-install-recommends install ca-certificates curl lib32gcc1 libsdl2-2.0-0:i386 git