Skip to content
This repository has been archived by the owner on Jun 25, 2022. It is now read-only.

Document building. Add Dockerfile. Reference unofficial Docker image #119

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM node:10

WORKDIR /app
ADD package.json /app/package.json
ADD package-lock.json /app/package-lock.json
RUN npm install

ADD . /app

CMD npm start
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,12 @@ Status](https://travis-ci.org/technoboy10/crossorigin.me.svg?branch=v2)](https:/

crossorigin.me is a CORS proxy. It lets developers (like you!) access resources from other sites that don't have CORS enabled on their server. See [the website](https://crossorigin.me) for more information.

# Building

```
npm install
npm start
```

# Docker
An unofficial Docker image is available at `spiffytech/crossorigin.me`
Loading