Skip to content

Commit

Permalink
[mirotalksfu] - fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed Jan 29, 2025
1 parent 75592b9 commit 0c8a7d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"]

0 comments on commit 0c8a7d6

Please sign in to comment.