mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
@appinteractive it's troublesome to add the SSH private key via environment variable. You have to convert newlines to spaces and convert them back - which I think is error prone. I hope we can transfer the private key file on to our deployed container later on.
8 lines
116 B
Docker
8 lines
116 B
Docker
FROM mongo:latest
|
|
|
|
RUN apt-get update
|
|
RUN apt-get -y install openssh-client
|
|
COPY .ssh /root/.ssh/
|
|
COPY import.sh .
|
|
|