I need to throw the ssh folder with the keys in docker.
Dockerfile:
       FROM python:3.6-alpine3.12
       RUN mkdir /code && mkdir /data
       ADD . /code
       WORKDIR /code
       RUN pip3 install -r requirement &&  apk add git
       RUN mkdir /root/.ssh && -v ~/.ssh:/root/.ssh
       RUN apk add -y wget
Error when building:
/bin/sh: illegal option -
The command '/bin/sh -c -v ~/.ssh:/root/.ssh returned a non-zero code: 2
 
    