From 4a3e9d25b281c377ca318b7ae3f97c7b7913c869 Mon Sep 17 00:00:00 2001 From: casjay Date: Thu, 27 Oct 2022 17:39:46 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9C=E2=9E=A1=EF=B8=8F=20Random:=20=20D?= =?UTF-8?q?ockerfile=20=E2=AC=85=EF=B8=8F=F0=9F=90=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c7c5bc0..4a6f9e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,8 @@ RUN set -ex; \ echo "http://dl-cdn.alpinelinux.org/alpine/${ALPINE_VERSION}/community" >>"/etc/apk/repositories"; \ if [ "${ALPINE_VERSION}" = "edge" ]; then echo "http://dl-cdn.alpinelinux.org/alpine/${ALPINE_VERSION}/testing" >>"/etc/apk/repositories" ; fi ; \ apk update --update-cache && apk add --no-cache ${PACK_LIST} && \ - git clone -q https://github.com/casjay-heroku/commitment /app + git clone -q https://github.com/casjay-heroku/commitment /app && \ + cd /app && pip install -r requirements.txt RUN echo 'Running cleanup' ; \ rm -Rf /usr/share/doc/* /usr/share/info/* /tmp/* /var/tmp/* ; \