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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

24 lines
346 B

FROM alpine
MAINTAINER Elbert Alias <elbert@alias.io>
ENV WAPPALYZER_ROOT /opt/wappalyzer
RUN apk update && apk add --no-cache \
nodejs \
nodejs-npm
RUN mkdir -p "$WAPPALYZER_ROOT"
WORKDIR "$WAPPALYZER_ROOT"
ADD apps.json .
ADD driver.js .
ADD index.js .
ADD package.json .
ADD wappalyzer.js .
RUN npm i
ENTRYPOINT ["node", "index.js"]