Created
April 5, 2018 01:42
-
-
Save MarioCarrion/1421c00bc80694ff8c127ccdc1b2b867 to your computer and use it in GitHub Desktop.
Judging go-swagger with Dredd
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
# vim: set syntax=dockerfile: | |
FROM node:9.9.0-alpine | |
RUN apk --update upgrade && \ | |
apk add python && \ | |
npm config set loglevel error && \ | |
npm install -g [email protected] && \ | |
apk del python && \ | |
rm -rf /var/cache/apk/* | |
ENV PATH ${PATH}:/node_modules/.bin | |
ENTRYPOINT ["dredd", "--version"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment