Created
February 16, 2021 13:49
-
-
Save ulrich/d44b3f0c0b35a2d6a7e87022904e13b4 to your computer and use it in GitHub Desktop.
OWASP cheat sheet in Docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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