Skip to content

Instantly share code, notes, and snippets.

@jmbataller
Created February 10, 2020 11:48
Show Gist options
  • Save jmbataller/ca936c4b5900a9dd83c6f9657211d121 to your computer and use it in GitHub Desktop.
Save jmbataller/ca936c4b5900a9dd83c6f9657211d121 to your computer and use it in GitHub Desktop.
Dockerfile with aws client and health endpoint (used for testing in k8s)
FROM python:alpine
ARG CLI_VERSION=1.16.86
RUN apk -uv add --no-cache groff jq less && \
pip install --no-cache-dir awscli==$CLI_VERSION
WORKDIR /aws
CMD python3 -m http.server 8000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment