-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Docker base image to python:3.8-alpine (#16)
- Loading branch information
Showing
1 changed file
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3 | ||
FROM python:3.8-alpine | ||
|
||
LABEL name="cfn-lint-action" | ||
LABEL repository="https://github.com/ScottBrenner/cfn-lint-action" | ||
|
@@ -11,8 +11,7 @@ LABEL "com.github.actions.color"="green" | |
|
||
LABEL "maintainer"="Scott Brenner <[email protected]>" | ||
|
||
RUN apk --no-cache add python3 | ||
RUN pip3 install cfn-lint | ||
RUN pip install cfn-lint --no-cache-dir | ||
RUN cfn-lint --update-specs | ||
RUN cfn-lint --update-iam-policies | ||
|
||
|