More gooping around with lcthw

This commit is contained in:
Dan Buch 2016-08-29 12:45:08 -04:00
parent b6de834a7b
commit 69b5bd9a81
No known key found for this signature in database
GPG Key ID: FAEF12936DD3E3EC
2 changed files with 9 additions and 3 deletions

View File

@ -2,8 +2,10 @@ FROM ubuntu:xenial
ENV DEBIAN_FRONTEND noninteractive
WORKDIR /app
RUN apt-get update -yq
RUN apt-get install -yq \
RUN apt-get install -yq --no-install-recommends --no-install-suggests \
build-essential \
curl \
file \
@ -11,4 +13,8 @@ RUN apt-get install -yq \
git \
man \
sudo \
vim-tiny
vim-tiny \
zsh
RUN echo "kernel.yama.ptrace_scope = 0" > /etc/sysctl.d/10-ptrace.conf
CMD ["zsh", "-l"]

View File

@ -26,4 +26,4 @@ docker-image:
.PHONY: docker-run
docker-run:
docker run -it -v $(PWD):/app meatballhat/lcthw:latest bash -l
docker run -it -v $(PWD):/app meatballhat/lcthw