mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-13 08:24:48 +00:00
10 lines
191 B
Docker
10 lines
191 B
Docker
FROM mongo:4
|
|
|
|
RUN apt-get update \
|
|
&& apt-get -y install --no-install-recommends openssh-client \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
COPY .ssh /root/.ssh/
|
|
COPY import.sh .
|
|
|