Files
gists/dockerfiles/plasonew/Dockerfile
2018-10-24 01:09:55 +02:00

21 lines
482 B
Docker

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"]