Skip to content

Commit cf07ed7

Browse files
Merge pull request #34 from codeforequity-at/develop
Develop
2 parents d0b6300 + 7b0e216 commit cf07ed7

File tree

6 files changed

+9764
-36
lines changed

6 files changed

+9764
-36
lines changed

Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,6 @@ docker_publish: docker_login
2727
docker tag botium/speech:$(VERSION) ${BOTIUM_AWS_REGISTRY_HOSTNAME}/botium/speech:$(VERSION)
2828
docker push ${BOTIUM_AWS_REGISTRY_HOSTNAME}/botium/speech:$(VERSION)
2929

30-
docker_latest: docker_login
31-
docker tag botium/speech:$(VERSION) ${BOTIUM_AWS_REGISTRY_HOSTNAME}/botium/speech:latest
32-
docker push ${BOTIUM_AWS_REGISTRY_HOSTNAME}/botium/speech:latest
33-
34-
3530
develop: docker_build_dev docker_publish_dev
3631

37-
release: docker_build docker_publish docker_latest
32+
release: docker_build docker_publish

frontend/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
node_modules
2-
package-lock.json
32
*.local
43
resources/.cache
54
resources/.tmp

frontend/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM ubuntu:18.04
1+
FROM ubuntu:20.04
22

3-
RUN apt-get update && apt-get -y install curl gnupg bc && curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt-get -y install nodejs
3+
RUN apt-get update && apt-get -y install curl gnupg bc && curl -sL https://deb.nodesource.com/setup_18.x | bash - && apt-get -y install nodejs
44
RUN apt-get update && apt-get install -y dos2unix sox libsox-fmt-mp3 libttspico-utils ffmpeg
55

66
WORKDIR /app
77
COPY ./package.json /app/package.json
8-
RUN npm install --no-optional --production --legacy-peer-deps
8+
RUN npm install --omit=optional --omit=dev --legacy-peer-deps
99
COPY . /app
1010
COPY ./resources/.env /app/.env
1111
RUN find . -type f ! -path '*/node_modules/*' -print0 | xargs -0 dos2unix

frontend/eslint.config.js

Whitespace-only changes.

0 commit comments

Comments
 (0)