Remove default localhost settings (#8)

* Remove default localhost settings
Replace with deployment settings

* Fix for upload data format

* Fix test data for last commit
This commit is contained in:
John Wu
2021-01-26 17:35:39 -08:00
committed by GitHub
parent fcde299197
commit eccae3f26d
5 changed files with 4 additions and 5 deletions

View File

@@ -3,7 +3,6 @@ FROM node:12-alpine as builder
COPY package*.json ./
RUN npm install
COPY . .
COPY .env.template .env
RUN npm run build
FROM nginx:alpine