mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
We can mount the .ssh at runtime. This will allow us to push the docker image to dockerhub without exposing any secrects.
9 lines
175 B
Docker
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 .
|
|
|