Sign inSign up

kyoshitake/awscli

By kyoshitake

Updated almost 8 years ago

for jenkins

Image
0

167

Dockerfile
FROM alpine

RUN apk --update add \
  python \
  curl \
  groff

RUN curl https://bootstrap.pypa.io/get-pip.py | python && \
  pip install awscli

RUN addgroup -g 1000 ciuser && \
    adduser -D -u 1000 -G ciuser ciuser

USER ciuser

CMD ["tail", "-f", "/dev/null"]