Created
February 10, 2020 11:48
-
-
Save jmbataller/ca936c4b5900a9dd83c6f9657211d121 to your computer and use it in GitHub Desktop.
Dockerfile with aws client and health endpoint (used for testing in k8s)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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