rublon-ssh-old/debian/10/Dockerfile
rublon-jfr 8540d9dc6c RDEV-3625: Init os depended files from debian10 branch
Hash:
b802758bacf4df86379b175f716347dc179e6696
2022-11-08 20:24:50 +01:00

39 lines
622 B
Docker

# Dockerfile
FROM debian:buster
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y \
build-essential \
gcc \
curl \
devscripts \
equivs \
git-buildpackage \
git \
lsb-release \
make \
openssh-client \
pristine-tar \
rsync \
ruby \
ruby-dev \
rubygems \
wget \
openssh-server \
libcurl4-openssl-dev \
libpam0g-dev \
libssl-dev \
python3-dev \
python \
python3-pip
#RUN pip3 install "python-socketio[client]"
RUN echo "gem: --no-ri --no-rdoc" >/etc/gemrc
RUN gem install fpm
COPY . /usr/src
USER root