File size: 607 Bytes
e8e5856 98f5598 e8e5856 98f5598 e8e5856 98f5598 e8e5856 98f5598 e8e5856 98f5598 e8e5856 503f381 98f5598 e8e5856 503f381 98f5598 e8e5856 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# Use Node.js LTS (Long Term Support) version
FROM node:20-slim
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
COPY package*.json ./
# Install dependencies
RUN npm install
# Bundle app source
COPY . .
# Create a directory for uploaded files if needed
#RUN mkdir -p public
# Your app binds to port 3000 so you'll use the EXPOSE instruction to have it mapped by the docker daemon
EXPOSE 7860
# Define environment variable
ENV PORT=7860
# Command to run the application
CMD [ "node", "index.js" ] |