heartwood every commit a ring

Continue docker improvements

782118ac by Isaac Bythewood · 3 years ago

added .dockerignore
@@ -0,0 +1,9 @@.editorconfig.eslintrc.js.git.gitignore.next.nowignoreLICENSE.mdnode_modulesREADME.md
modified .gitignore
@@ -1,3 +1,4 @@.env.nextnode_modulesyarn-error.log
modified Dockerfile
@@ -14,6 +14,6 @@ RUN yarn installCOPY . .RUN npx next buildRUN yarn next:buildUSER app:app
modified docker-compose.yml
@@ -7,5 +7,5 @@ services:    env_file: .env    ports:      - "${PORT}:${PORT}"    command: npx next start --port ${PORT}    command: yarn next:start    restart: unless-stopped
modified package.json
@@ -1,7 +1,9 @@{  "private": true,  "scripts": {    "start": "next --port 3000"    "start": "next --port 3000",    "next:start": "next start --port ${PORT}",    "next:build": "next build"  },  "dependencies": {    "chart.js": "^3.0.2",
added samplefiles/env.sample
@@ -0,0 +1 @@PORT=8000