box-o-sand/lcthw-remnants-2/Dockerfile

21 lines
345 B
Docker
Raw Normal View History

2016-04-12 03:16:35 +00:00
FROM ubuntu:xenial
ENV DEBIAN_FRONTEND noninteractive
2016-08-29 16:45:08 +00:00
WORKDIR /app
2016-04-12 03:16:35 +00:00
RUN apt-get update -yq
2016-08-29 16:45:08 +00:00
RUN apt-get install -yq --no-install-recommends --no-install-suggests \
2016-04-17 03:58:24 +00:00
build-essential \
curl \
file \
gdb \
git \
man \
sudo \
2016-08-29 16:45:08 +00:00
vim-tiny \
zsh
RUN echo "kernel.yama.ptrace_scope = 0" > /etc/sysctl.d/10-ptrace.conf
CMD ["zsh", "-l"]