mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +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 .
|
|
|