rublon-ssh-old/centos/8/Dockerfile
rublon-jfr dcf7ac820c RDEV-3625: Init os depended files from centos8 branch
Hash:
949d678affb59e2b774e2f2fd07a86690dd99fcb
2022-11-08 20:24:50 +01:00

34 lines
603 B
Docker

# Dockerfile
FROM centos:7
ENV DEBIAN_FRONTEND noninteractive
RUN yum -y update && yum -y install \
curl-devel \
openssl-devel \
pam-devel \
epel-release \
python3-devel.x86_64 \
python36 \
python \
python-devel.x86_64 \
policycoreutils-devel \
ruby-devel \
gcc \
make \
rpm-build \
rubygems
#RUN pip install "python-socketio[client]"
RUN echo "gem: --no-ri --no-rdoc" >/etc/gemrc
RUN gem install ffi --version 1.12.0
#RUN gem install fpm
RUN gem install fpm --version 1.11.0
#RUN gem install fpm-cookery
#RUN gem install buildtasks
#RUN gem install bundler
COPY . /usr/src
USER root