You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
259 B
14 lines
259 B
FROM node:14.16.0-alpine3.13
|
|
|
|
ARG JSONLINT_VERSION=latest
|
|
ENV npm_config_loglevel=silent
|
|
|
|
WORKDIR /data
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
npm install -g jsonlint@"$JSONLINT_VERSION" && \
|
|
rm -rf ~/.npm
|
|
|
|
USER node
|
|
ENTRYPOINT ["jsonlint"]
|
|
CMD ["--help"]
|