15 lines
239 B
Docker
Executable File
15 lines
239 B
Docker
Executable File
ARG BUILD_FROM
|
|
FROM ${BUILD_FROM}
|
|
|
|
ENV LANG C.UTF-8
|
|
|
|
COPY rootfs /
|
|
|
|
# add aws-cli and deps
|
|
RUN apk add -v --update --no-cache \
|
|
python3 \
|
|
py3-pip \
|
|
groff \
|
|
less \
|
|
jq
|
|
RUN pip3 install --upgrade awscli |