Sha256: 8383cee2fe9a2105ea3f64a942343e728a2ab5ee88f814b08d173fe26960d3ca

Contents?: true

Size: 699 Bytes

Versions: 2

Compression:

Stored size: 699 Bytes

Contents

FROM ruby:2.5-slim

RUN mkdir -p /opt/mu/etc/ /home/mu /usr/local/ruby-current/lib/ruby/gems/2.5.0/gems/var/

WORKDIR /home/mu

RUN df -h

RUN apt-get update

RUN apt-get install -y ruby2.5-dev dnsutils ansible build-essential python-pip curl

RUN apt-get upgrade -y

RUN df -h

COPY ./cloud-mu-*.gem /home/mu

RUN gem install ./cloud-mu-*.gem -N

RUN df -h

RUN ls -la

#RUN rm --verbose -f cloud-mu-*.gem

RUN pip install pywinrm

RUN apt-get remove -y build-essential ruby2.5-dev

RUN apt-get autoremove -y

RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.17.4/bin/linux/amd64/kubectl && mv kubectl /usr/bin && chmod +x /usr/bin/kubectl

EXPOSE 2260

CMD /usr/sbin/init

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cloud-mu-3.2.0 Dockerfile
cloud-mu-3.1.6 Dockerfile