diff --git a/dockerfiles/plasonew/Dockerfile b/dockerfiles/plasonew/Dockerfile index 349ed53..b990e1e 100644 --- a/dockerfiles/plasonew/Dockerfile +++ b/dockerfiles/plasonew/Dockerfile @@ -1,7 +1,20 @@ -FROM ubuntu:xenial -LABEL maintainer="d4n6" -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"] +FROM ubuntu:16.04 +MAINTAINER Tabledevil +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"]