chore: review comments

This commit is contained in:
blam
2021-01-26 17:34:52 +01:00
parent 660cfca341
commit 2dee00292c
+5
View File
@@ -13,6 +13,9 @@ in one container. This Dockerfile uses multi-stage builds, and a
It also provides caching on the `yarn install`'s so that you don't have to do it
unless absolutely necessary.
> Note: This Dockerfile assumes that you're running SQLite, or your
> configuration is setup to connect to an external PostgreSQL Database.
```Dockerfile
# Stage 1 - Create yarn install skeleton layer
FROM node:14-buster AS packages
@@ -66,6 +69,8 @@ $ docker build -t example-deployment .
$ docker run -p 7000:7000 example-deployment
```
Once complete, open your browser at `http://localhost:7000` if running locally.
## Heroku
Deploying to Heroku is relatively easy following these steps.