Skip to content

Instantly share code, notes, and snippets.

@krogebry
Created July 29, 2020 18:44
Show Gist options
  • Save krogebry/b418604b3022d4944aac3e3b23c45f6a to your computer and use it in GitHub Desktop.
Save krogebry/b418604b3022d4944aac3e3b23c45f6a to your computer and use it in GitHub Desktop.
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