1
0
Fork 0
mirror of https://github.com/snovvcrash/usbrip.git synced 2024-05-03 22:26:04 +02:00
usbrip/Dockerfile
2020-02-06 16:16:04 +03:00

9 lines
263 B
Docker

FROM ubuntu
LABEL maintainer="snovvcrash@protonmail.ch"
ENV LANG="C.UTF-8"
RUN apt update && apt install python3 python3-venv -y
COPY . /src
WORKDIR /src
RUN python3 gen-demo-syslog.py && bash installers/install.sh && rm -rf /var/opt/usbrip
ENTRYPOINT ["usbrip"]