From e12cc35653629cf2fcd84877557400917f3baf8d Mon Sep 17 00:00:00 2001 From: Nathan Malnoury Date: Thu, 22 Jul 2021 15:43:00 +0200 Subject: [PATCH] Dockerfile: change image to alpine, add git to image. --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ca9f34e..cb7a823 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ # Container image that runs your code -FROM python:3.8-slim-buster - +FROM python:3.8-alpine +RUN apk update +RUN apk add git # Copies your code file from your action repository to the filesystem path `/` of the container COPY . action RUN ls