1
0
mirror of https://github.com/openshift/source-to-image.git synced 2026-02-05 12:44:54 +01:00

Fix package names in release Dockerfile

This commit is contained in:
Michal Fojtik
2015-05-18 16:59:29 +02:00
parent ac0b2512c9
commit cfc8103a9b

View File

@@ -3,13 +3,13 @@
#
# The standard name for this image is openshift/sti-release
#
FROM centos:centos7
FROM openshift/origin-base
# components from EPEL must be installed in a separate yum install step
RUN yum install -y git tar wget socat hostname epel-release && \
yum clean all
RUN yum install -y hg golang golang-pkg-darwin golang-pkg-windows && \
RUN yum install -y hg golang golang-pkg-darwin-amd64 golang-pkg-windows-amd64 && \
yum clean all
ENV GOPATH /go