Skip to content
This repository has been archived by the owner on Sep 24, 2022. It is now read-only.

Commit

Permalink
Dockerfile: change image to alpine, add git to image.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathanmalnoury committed Jul 22, 2021
1 parent dbfa06e commit e12cc35
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit e12cc35

Please sign in to comment.