collection.dockerfile/ubuntu/mbk-deploy/Dockerfile

10 lines
439 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

FROM ubuntu:jammy
ENV container docker
RUN apt -y update; apt -y install git curl bash openssh-client jq zip screen vim
COPY ibm-gft-developers /root/ibm-gft-developers
RUN mkdir /root/.ssh; chmod 700 /root/.ssh; chmod 400 /root/ibm-gft-developers
COPY ssh-config /root/.ssh/config
RUN curl -L https://raw.githubusercontent.com/warrensbox/terraform-switcher/release/install.sh | bash
ENV PS1="mbk.deploy "
ENTRYPOINT ["/usr/bin/bash"]