Skip to content

Commit

Permalink
Add docker configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
fcivaner authored and watsonbox committed Oct 4, 2023
1 parent dcf76ea commit 813cf35
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,15 @@ Error monitoring provided by Bugsnag.
<img src="bugsnag.png" width="200" />
</a>

## Running With Docker

To build and run Exportify with docker, run:

**`docker build . -t exportify`**

**`docker run -p 3000:3000 exportify`**

And then open [http://localhost:3000](http://localhost:3000) to view it in the browser.

## Contributing

Expand Down
9 changes: 9 additions & 0 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM node:18.18-alpine

COPY . /

RUN yarn install

EXPOSE 3000

ENTRYPOINT ["yarn", "start"]

0 comments on commit 813cf35

Please sign in to comment.