Skip to content

Commit 9b54695

Browse files
add Docker file for oidc and aws assume role step curl jq and aws usage (#671)
* add Docker file for oidc and aws assume role step curl jq and aws usage * remove unnecessary arg * add comment
1 parent 36d3648 commit 9b54695

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM python:alpine
2+
3+
# using same aws-cli that was used before moving to quay images to prevent regressions
4+
ARG CLI_VERSION=1.16.284
5+
6+
RUN apk -uv add --no-cache groff jq less && \
7+
pip install --no-cache-dir awscli==$CLI_VERSION
8+
9+
WORKDIR /aws
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM alpine:3.14
2+
3+
RUN apk add --no-cache curl jq bash
4+
5+
CMD ["/bin/sh"]

0 commit comments

Comments
 (0)