Sha256: 3273a9cf798680af8e4d8d2b0420baf00e2cd5673f688f7c1f40cee9ec8e3f28

Contents?: true

Size: 914 Bytes

Versions: 3

Compression:

Stored size: 914 Bytes

Contents

FROM opensuse:42.1
MAINTAINER Cornelius Schumacher <schumacher@kde.org>

run zypper --non-interactive install  ca-certificates-mozilla

RUN zypper --non-interactive install curl
RUN zypper --non-interactive install ruby
RUN zypper --non-interactive install --no-recommends osc

# Dependencies for yes_ship_it
RUN zypper --non-interactive install ruby2.1-rubygem-inifile ruby2.1-rubygem-rest-client
RUN zypper --non-interactive install git

# Configuration for OBS client
COPY oscrc /root/.oscrc

COPY certificates/rubygems.crt /etc/pki/trust/anchors/rubygems.pem
COPY certificates/api.rubygems.crt /etc/pki/trust/anchors/api.rubygems.pem
COPY certificates/obs.crt /etc/pki/trust/anchors/obs.pem

RUN update-ca-certificates

COPY run_test.rb /run_test.rb

# Configuration for gem
RUN mkdir /root/.gem
RUN echo ":rubygems_api_key: 123" >/root/.gem/credentials
RUN chmod 0600 /root/.gem/credentials

CMD /run_test.rb

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
httpotemkin-0.0.3 containers/client/Dockerfile
httpotemkin-0.0.2 containers/client/Dockerfile
httpotemkin-0.0.1 containers/client/Dockerfile