[mirotalksfu] - fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2025-01-29 18:04:26 +01:00
الأصل 75592b975e
التزام 0c8a7d6e75

عرض الملف

@@ -16,6 +16,9 @@ RUN apt-get update \
ffmpeg \
&& rm -rf /var/lib/apt/lists/*
# Rename config.template.js to config.js
COPY ./app/src/config.template.js ./app/src/config.js
# Copy package.json and install npm dependencies
COPY package.json .
RUN npm install
@@ -31,8 +34,5 @@ RUN apt-get purge -y --auto-remove \
COPY app app
COPY public public
# Rename config.template.js to config.js
RUN cp app/src/config.template.js app/src/config.js
# Set default command to start the application
CMD ["npm", "start"]