mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-20 20:01:22 +00:00
10 lines
198 B
Docker
10 lines
198 B
Docker
FROM mongo:latest
|
|
ARG KNOWN_HOST
|
|
|
|
RUN apt-get update
|
|
RUN apt-get -y install openssh-client
|
|
COPY id_rsa /root/.ssh/id_rsa
|
|
# RUN ssh-keyscan -H $KNOWN_HOST >> /root/.ssh/known_hosts
|
|
COPY import.sh .
|
|
|