Skip to content

Instantly share code, notes, and snippets.

@clairvy
Last active September 17, 2018 08:35
Show Gist options
  • Save clairvy/2087ba4d1435ecb8cc78f6f5a34f0454 to your computer and use it in GitHub Desktop.
Save clairvy/2087ba4d1435ecb8cc78f6f5a34f0454 to your computer and use it in GitHub Desktop.
sample to read book
version: "3"
services:
linux:
build: .
volumes:
- .:/usr/src/app
security_opt:
- seccomp:unconfined
FROM ubuntu:16.04
RUN apt-get update \
&& apt-get install -y binutils build-essential sysstat strace \
&& apt-get install -y \
binutils build-essential sysstat \
strace \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment