File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ ARG AWS_CLI_VERSION=2.11.6
9
9
# https://hub.docker.com/_/python/tags?page=1&name=alpine
10
10
ARG PYTHON_ALPINE_VERSION=3.10.10-alpine3.17
11
11
12
+ # https://github.com/jqlang/jq/pkgs/container/jq
13
+ ARG JQ_VERSION=1.7.1
14
+
12
15
FROM python:${PYTHON_ALPINE_VERSION} as builder
13
16
14
17
ARG AWS_CLI_VERSION
@@ -45,6 +48,7 @@ RUN rm -rf \
45
48
-delete
46
49
47
50
FROM python:${PYTHON_ALPINE_VERSION} as python
51
+ FROM ghcr.io/jqlang/jq:${JQ_VERSION} as jq
48
52
# build the final image
49
53
FROM ghcr.io/runatlantis/atlantis:v${ATLANTIS_VERSION}
50
54
@@ -54,3 +58,4 @@ COPY --from=builder /usr/local/aws-cli/ /usr/local/aws-cli/
54
58
COPY --from=builder /aws-cli-bin/ /usr/local/bin/
55
59
COPY --from=python /usr/local/bin/ /usr/local/bin/
56
60
COPY --from=python /usr/local/lib/ /usr/local/lib/
61
+ COPY --from=jq /jq /usr/local/bin/
You can’t perform that action at this time.
0 commit comments