This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
molecule/docker/Dockerfile.gce
Robert Kaussow bdaf47bce8
All checks were successful
continuous-integration/drone/push Build is passing
fixtures and refactoring
2019-02-28 10:51:09 +01:00

52 lines
869 B
Docker

FROM python:3.7-alpine
LABEL maintainer "Robert Kaussow <mail@geeklabor.de>"
ENV PACKAGES="\
gcc \
make \
bash \
shadow \
libffi-dev \
musl-dev \
openssl-dev \
py-pip \
python \
python-dev \
linux-headers \
sudo \
rsync \
curl \
ruby \
ruby-dev \
ruby-etc \
ruby-rdoc \
ruby-irb \
git \
openssh-client \
"
ENV PIP_PACKAGES="\
molecule[gce] \
virtualenv \
apache-libcloud \
pycrypto \
"
ENV GEM_PACKAGES="\
rubocop \
"
RUN \
apk update \
&& apk add --update --no-cache ${PACKAGES} \
&& rm -rf /var/cache/apk/* \
&& pip install --upgrade pip \
&& pip install --no-cache-dir ${PIP_PACKAGES} \
&& rm -rf /root/.cache \
&& mkdir /root/.ssh \
&& chmod 700 /root/.ssh \
&& gem install ${GEM_PACKAGES}
USER root
ENV SHELL /bin/bash