Skip to content

Commit

Permalink
docker file changes due to deployment issue
Browse files Browse the repository at this point in the history
  • Loading branch information
VISHNUDAS-tunerlabs committed May 20, 2024
1 parent 5cfe626 commit b784508
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ WORKDIR /opt/reports
#copy package.json file
COPY package.json /opt/reports

#install fonts
RUN apt update && apt install fonts-indic -y \
&& fc-cache -f

#install node packges
RUN npm install

#copy all files
COPY . /opt/reports

#install fonts
RUN apt update && apt install fonts-indic -y \
&& fc-cache -f

#expose the application port
EXPOSE 3000

#start the application
CMD node app.js
CMD node app.js

0 comments on commit b784508

Please sign in to comment.