This commit is contained in:
2025-02-23 23:20:37 -05:00
commit bcade66f5d
5 changed files with 2177 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
# Create image based on the official Node image from dockerhub
FROM node:latest
# Create app directory
WORKDIR /usr/src/app
# Copy dependency definitions
COPY package.json ./package.json
COPY package-lock.json ./package-lock.json
# Install dependencies
#RUN npm set progress=false \
# && npm config set depth 0 \
# && npm i install
RUN npm ci
# Get all the code needed to run the app
COPY . .
# Expose the port the app runs in
EXPOSE 3000
# Serve the app
CMD ["npm", "start", "3000"]