[mirotalk] - fix typo

This commit is contained in:
Miroslav Pejic
2025-01-29 17:59:56 +01:00
parent d2f3d0f9e3
commit 2e61a6bd05
+3 -3
View File
@@ -8,6 +8,9 @@ WORKDIR /src
COPY package.json .
COPY .env.template ./.env
# Rename config.template.js to config.js
COPY ./app/src/config.template.js ./app/src/config.js
# Install necessary system packages and dependencies
RUN apk add --no-cache \
bash \
@@ -20,8 +23,5 @@ RUN apk add --no-cache \
COPY app app
COPY public public
# Rename config.template.js to config.js
RUN cp /src/app/src/config.template.js /src/app/src/config.js
# Set default command to start the application
CMD ["npm", "start"]