Robert Schäfer 5bdc728028 Don't copy private SSH key into docker image
We can mount the .ssh at runtime. This will allow us to push the docker
image to dockerhub without exposing any secrects.
2019-01-28 17:28:52 +01:00

9 lines
175 B
Docker

FROM mongo:4
RUN apt-get update \
&& apt-get -y install --no-install-recommends openssh-client rsync \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY import.sh .