chore: Update Dockerfile to use Node.js version 22 and expose port 8005
All checks were successful
continuous-integration/drone Build is passing
All checks were successful
continuous-integration/drone Build is passing
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
# Use an official Node.js runtime as the base image
|
||||
FROM node:14
|
||||
FROM node:22
|
||||
|
||||
# Set the working directory in the container
|
||||
WORKDIR /app
|
||||
@@ -14,7 +14,7 @@ RUN npm install
|
||||
COPY . .
|
||||
|
||||
# Expose a port (if needed)
|
||||
EXPOSE 3010
|
||||
EXPOSE 8005
|
||||
|
||||
# Define the command to run the application
|
||||
CMD [ "npm", "start" ]
|
||||
|
||||
Reference in New Issue
Block a user