File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 1
1
FROM debian:stable-slim AS x
2
- RUN apt-get update \
3
- && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends python3-pip groff \
4
- && rm -rf /var/lib/apt/lists/*
2
+ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends python3-pip groff-base
5
3
RUN python3 -m pip install --no-cache aws-shell
6
4
RUN aws-shell < /dev/null 2> /dev/null || true
7
5
8
6
FROM debian:stable-slim AS y
9
- RUN apt-get update \
10
- && DEBIAN_FRONTEND=noninteractive apt-get install -y patch
7
+ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y patch
11
8
COPY --from=x /usr/local/lib/python3.9/dist-packages/awscli/clidriver.py .
12
9
COPY clidriver.py.patch .
13
10
RUN patch clidriver.py clidriver.py.patch
You can’t perform that action at this time.
0 commit comments