added sep dockerfiles

This commit is contained in:
Tobias Kessels
2019-04-29 23:49:27 +02:00
parent 16a55555a0
commit 94e16ac5c2
4 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
FROM ubuntu:16.04
LABEL maintainer="tabledevil"
LABEL docker.cmd="docker run -it --rm -v /mnt/sdc1:/data sep"
RUN apt-get update && apt-get install -y wget default-jre lib32ncurses5 lib32z1 sharutils ; rm -rf /var/lib/apt/lists/*
ADD sep.tar.gz /root/
WORKDIR /root
RUN chmod +x /root/sep/install.sh
RUN /root/sep/install.sh -i && rm -rf /root/sep
RUN ln -s /opt/Symantec/symantec_antivirus/sav /usr/local/bin/sav
WORKDIR /data