From 2e61a6bd057a29981c2ed20b38c9169dc6a19e15 Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Wed, 29 Jan 2025 17:59:56 +0100 Subject: [PATCH] [mirotalk] - fix typo --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7a3fcfa2..df523539 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file