Created
July 29, 2020 18:44
-
-
Save krogebry/b418604b3022d4944aac3e3b23c45f6a to your computer and use it in GitHub Desktop.
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 debian:latest | |
RUN mkdir -p /opt/company | |
WORKDIR /opt/company | |
RUN apt-get update && \ | |
apt-get install -y python3 python3-pip | |
RUN python3 -m pip install awscli | |
ADD install-plugins.sh . | |
CMD "./install-plugins.sh" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment