We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38b926a commit 0315b7cCopy full SHA for 0315b7c
.github/workflows/master-deployment.yml
@@ -29,7 +29,7 @@ jobs:
29
- name: Cypress run
30
uses: cypress-io/github-action@v2
31
with:
32
- build: yarn run build
+ build: PRODUCTION=true && yarn run build
33
start: yarn run dev
34
wait-on: 'http://localhost:3000'
35
# build-s3:
Dockerfile
@@ -13,7 +13,7 @@ COPY ./package.json /usr/local/src/neodash/package.json
13
14
RUN yarn install
15
COPY ./ /usr/local/src/neodash
16
-RUN yarn run build
+RUN PRODUCTION=true && yarn run build
17
18
# production stage
19
FROM nginx:alpine AS neodash
0 commit comments