[mirotalk] - rb

This commit is contained in:
Miroslav Pejic
2025-07-03 01:34:53 +02:00
parent cd1e60977d
commit fe88610f23
+2 -2
View File
@@ -5,7 +5,7 @@ FROM node:22-alpine
WORKDIR /src
# Copy package.json and .env dependencies
COPY package*.json .
COPY package.json .
COPY .env.template ./.env
# Rename config.template.js to config.js
@@ -15,7 +15,7 @@ COPY ./app/src/config.template.js ./app/src/config.js
RUN apk add --no-cache \
bash \
vim \
&& npm ci \
&& npm install \
&& npm cache clean --force \
&& rm -rf /tmp/* /var/tmp/* /usr/share/doc/*