Merge remote-tracking branch 'upstream/master' into feat/gql_req_header

This commit is contained in:
Andrew Bastin
2019-11-25 22:52:23 -05:00
3 changed files with 6 additions and 2 deletions

View File

@@ -8,9 +8,12 @@ RUN apk add --update --no-cache \
WORKDIR /app WORKDIR /app
COPY . . COPY package*.json ./
RUN npm install RUN npm install
COPY . .
RUN npm run build RUN npm run build
EXPOSE 3000 EXPOSE 3000

View File

@@ -372,7 +372,7 @@ This project is licensed under the [MIT License](https://opensource.org/licenses
<p> <p>
``` ```
[![Postwoman](https://img.shields.io/badge/Tested_on-Postwoman-success?logo=Postwoman)](https://postwoman.io) [![Postwoman](https://img.shields.io/badge/Tested_on-Postwoman-critical?logo=Postwoman)](https://postwoman.io)
``` ```
</p> </p>
</details> </details>

View File

@@ -14,6 +14,7 @@ services:
- "./plugins:/app/plugins" - "./plugins:/app/plugins"
- "./static:/app/static" - "./static:/app/static"
- "./store:/app/store" - "./store:/app/store"
- "./components:/app/components"
ports: ports:
- "3000:3000" - "3000:3000"
command: "npm run dev" command: "npm run dev"