Skip to content

Instantly share code, notes, and snippets.

@ulrich
Created February 16, 2021 13:49
Show Gist options
  • Save ulrich/d44b3f0c0b35a2d6a7e87022904e13b4 to your computer and use it in GitHub Desktop.
Save ulrich/d44b3f0c0b35a2d6a7e87022904e13b4 to your computer and use it in GitHub Desktop.
OWASP cheat sheet in Docker
FROM nginx:latest
WORKDIR /tmp
RUN apt-get update && apt-get install -y curl unzip && apt-get clean
RUN curl -fsSL -O https://cheatsheetseries.owasp.org/bundle.zip
RUN unzip bundle.zip && mv site/* /usr/share/nginx/html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment