Updated Plaso-Dockerfile

This commit is contained in:
Tobias Kessels
2018-10-24 00:32:41 +02:00
parent 133e051dd6
commit 5991d0346f

View File

@@ -1,7 +1,20 @@
FROM ubuntu:xenial FROM ubuntu:16.04
LABEL maintainer="d4n6" MAINTAINER Tabledevil
WORKDIR /data
RUN apt update && apt upgrade -y ; apt install software-properties-common python-software-properties -y
RUN add-apt-repository ppa:gift/stable -y ; apt update ; apt install python-plaso plaso-tools -y
ENTRYPOINT ["/bin/bash"]
RUN apt update && apt install -y locales
RUN locale-gen "en_US.UTF-8"
ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
RUN groupadd -g 999 user && \
useradd -r -u 999 -g user user
RUN apt update && apt install -y software-properties-common
RUN add-apt-repository -y ppa:gift/stable
RUN apt update && apt install -y python-plaso plaso-tools python-lzma python-pip
RUN pip install --upgrade lz4
USER user
WORKDIR /data
ENTRYPOINT ["/bin/bash"]