Skip to content

Commit 343a0d4

Browse files
Fixed dictate build
1 parent 6a48aff commit 343a0d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dictate/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ COPY . /app
77
RUN find . -type f -print0 | xargs -0 dos2unix
88
RUN npm install --no-optional --production
99

10-
RUN curl -L -o dicatejs.zip "https://github.com/Kaljurand/dictate.js/archive/master.zip" && unzip dicatejs.zip && rm dicatejs.zip
10+
RUN curl -L -o dicatejs.zip "https://github.com/Kaljurand/dictate.js/archive/master.zip" && unzip -o dicatejs.zip && rm dicatejs.zip
1111

1212
EXPOSE 56100
1313

dictate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"description": "Unified Speech Processing",
55
"scripts": {
6-
"prepare": "rm -rf ./dictate.js-master && curl -L -o dicatejs.zip \"https://github.com/Kaljurand/dictate.js/archive/master.zip\" && unzip dicatejs.zip && rm dicatejs.zip",
6+
"prepare": "rm -rf ./dictate.js-master && curl -L -o dicatejs.zip \"https://github.com/Kaljurand/dictate.js/archive/master.zip\" && unzip -o dicatejs.zip && rm dicatejs.zip",
77
"start": "node server.js"
88
},
99
"author": "Botium GmbH",

0 commit comments

Comments
 (0)