Last active
March 25, 2020 16:51
-
-
Save mims92/83b911783c2a23377c3f7dc9d1fe38b9 to your computer and use it in GitHub Desktop.
Linux - Docker - python & aws cli
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
# Requirements | |
# - Docker | |
#-------- | |
# Installation | |
# - docker build -t <your image name> . | |
#-------- | |
# "root" folder is app | |
FROM python:3.6-alpine | |
RUN pip3 install -U awscli | |
WORKDIR /app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment