Dockerfile Linter
Analyze Dockerfiles for common mistakes.
Paste or upload a Dockerfile
FROM node:latest
MAINTAINER John Doe <john@example.com>
RUN apt-get update
RUN apt-get install -y curl
ADD . /app
WORKDIR /app
RUN npm install
RUN sudo chmod +x script.sh
CMD ["node", "index.js"]Press ⌘+Enter to lint