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.
12 lines
222 B
12 lines
222 B
FROM node:14.16.0-alpine3.13
|
|
|
|
ARG JSONLINT_VERSION=latest
|
|
ENV npm_config_loglevel=silent
|
|
|
|
WORKDIR /data
|
|
RUN npm install -g jsonlint@"$JSONLINT_VERSION" && \
|
|
rm -rf ~/.npm
|
|
|
|
USER node
|
|
ENTRYPOINT ["jsonlint"]
|
|
CMD ["--help"]
|