Codebase list koadic / master Dockerfile
master

Tree @master (Download .tar.gz)

Dockerfile @masterraw · history · blame

1
2
3
4
5
6
FROM    ubuntu:20.04
WORKDIR /opt/koadic
RUN     apt-get update && apt-get install -y python3 python3-pip socat 
COPY    . /opt/koadic
RUN     pip3 install -r requirements.txt
ENTRYPOINT ["./koadic"]