1
0
Fork 0
mirror of https://github.com/snovvcrash/usbrip.git synced 2024-05-21 14:36:03 +02:00
usbrip/Dockerfile

9 lines
263 B
Docker
Raw Normal View History

2020-02-06 14:16:04 +01:00
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"]