mirror of
https://github.com/snovvcrash/usbrip.git
synced 2024-11-13 00:09:37 +01:00
9 lines
263 B
Docker
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"]
|