-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Wesley Pettit <[email protected]>
- Loading branch information
1 parent
c44882f
commit 3da5dbc
Showing
2 changed files
with
6 additions
and
6 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,11 +1,11 @@ | ||
FROM public.ecr.aws/amazonlinux/amazonlinux:latest | ||
|
||
RUN yum upgrade -y && yum install -y python3 pip | ||
RUN yum upgrade -y && yum install -y python3 pip3 | ||
|
||
RUN pip install boto3 | ||
RUN pip3 install boto3 | ||
|
||
WORKDIR /usr/local/bin | ||
|
||
COPY clean.py . | ||
|
||
CMD ["python", "clean.py"] | ||
CMD ["python3", "clean.py"] |
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,11 +1,11 @@ | ||
FROM public.ecr.aws/amazonlinux/amazonlinux:latest | ||
|
||
RUN yum upgrade -y && yum install -y python3 pip | ||
RUN yum upgrade -y && yum install -y python3 pip3 | ||
|
||
RUN pip install boto3 | ||
RUN pip3 install boto3 | ||
|
||
WORKDIR /usr/local/bin | ||
|
||
COPY validator.py . | ||
|
||
CMD ["python", "validator.py"] | ||
CMD ["python3", "validator.py"] |