chore: Update Dockerfile to use Node.js version 22 and expose port 8005
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2024-07-04 16:19:43 +02:00
parent 8484a534db
commit 9233856850
18 changed files with 912 additions and 285 deletions

View File

@@ -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" ]