Skip to content
This repository was archived by the owner on May 6, 2022. It is now read-only.

Commit 719a5d9

Browse files
committed
chore(release): adjust Dockerfile to include node-spokestack source
1 parent 61b93f4 commit 719a5d9

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

.circleci/config.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ jobs:
5959
python3 -m venv ~/venv
6060
source ~/venv/bin/activate
6161
pip install awscli
62-
cd examples/with-next
6362
aws configure set region us-east-1
6463
deploy/update.sh integration
6564
@@ -82,7 +81,6 @@ jobs:
8281
python3 -m venv ~/venv
8382
source ~/venv/bin/activate
8483
pip install awscli
85-
cd examples/with-next
8684
aws configure set region us-east-1
8785
deploy/update.sh production
8886
Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
1-
FROM node:12.16.3
1+
FROM node:14.15.1
22

33
RUN mkdir -p /usr/src/app
44
WORKDIR /usr/src/app
55

6-
COPY package.json /usr/src/app/
7-
COPY package-lock.json /usr/src/app/
8-
RUN npm install
96
COPY . /usr/src/app
107

11-
RUN npm run build
12-
RUN npm install --production --no-save
13-
148
EXPOSE 80
159
ENV PORT=80
1610
ENV GOOGLE_APPLICATION_CREDENTIALS=google-credentials.json
1711

12+
RUN cd examples/with-next
1813
CMD echo $GOOGLE_SPEECH_API_KEY > $GOOGLE_APPLICATION_CREDENTIALS ; exec npm start

0 commit comments

Comments
 (0)