Compare commits

...

2 Commits

Author SHA1 Message Date
Lio Young 3c6d025298 fix 2021-07-11 14:52:47 +02:00
Lio Young a4857e68c9 forgot to add a npm i step in bot docker file 2021-07-11 14:45:29 +02:00
1 changed files with 3 additions and 2 deletions

View File

@ -8,9 +8,10 @@ WORKDIR /opt/thaldrin
COPY . .
RUN apk add --no-cache git
RUN npm i -g typescript
RUN rm -rf build
RUN tsc --sourceMap false
RUN npm i
RUN "rm -rf build/ && tsc && cp -r src/utils/lingua/langs build/src/utils/lingua/langs"
RUN rm -rf src
RUN npm cache clean --force