Skip to content

Commit

Permalink
changed docker
Browse files Browse the repository at this point in the history
  • Loading branch information
aqil18 committed Oct 21, 2024
1 parent 66bce80 commit b9f58d9
Showing 1 changed file with 2 additions and 29 deletions.
31 changes: 2 additions & 29 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,29 +1,2 @@
# This file is the main docker file configurations

# Official Node JS runtime as a parent image
FROM node:20.0-alpine

# Set the working directory to ./app
WORKDIR /app

# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package.json ./

RUN apk add --no-cache git

# Install any needed packages
RUN npm install

# Audit fix npm packages
RUN npm audit fix

# Bundle app source
COPY . /app

# Make port 3000 available to the world outside this container
EXPOSE 3000

# Run app.js when the container launches
CMD ["npm", "start"]
FROM nginx
COPY . /usr/share/nginx/html

0 comments on commit b9f58d9

Please sign in to comment.