Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npm-debug.log
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM node:boron

# Create app directory
RUN mkdir -p /usr/src/app

# Install app dependencies
COPY package.json /usr/src/app/
RUN npm install

# Bundle app source
COPY . /usr/src/app

EXPOSE 3000

WORKDIR /usr/src/app

CMD [ "npm", "start" ]
16 changes: 13 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,19 @@ And the result would look like this...

Keep in mind that server.js is a starting point for you to write your own server. I would also recommend using something like Express.js instead of connect.js. I like connect because it is so lightweight and I just wanted to do something simple.

### Docker

Build the application like this:

```
docker build -t mlconnor/phantalyzer .
```

Run a container this way:

```
docker run -it -p 3000:3000 --name my-phantalyzer mlconnor/phantalyzer
```
### The following is a list of apps the Wappalyzer detects ###

```
Expand Down Expand Up @@ -477,6 +490,3 @@ Zinnia

### Task List ###
- [ ] Add instructions on how to run this on the server.