14 lines
298 B
Docker
14 lines
298 B
Docker
FROM ubuntu
|
|
|
|
RUN apt update && \
|
|
apt install -y sudo ssh tor curl python3-all
|
|
|
|
COPY dist/torch-agent_*_all.deb .
|
|
RUN apt install -y ./torch-agent_*_all.deb
|
|
|
|
COPY docker-tor/torch-agent.wrapper.sh /usr/bin/torch-agent.wrapper.sh
|
|
|
|
VOLUME [ "/etc/torch" ]
|
|
|
|
ENTRYPOINT [ "torch-agent.wrapper.sh" ]
|