feat: both nest and next backends

This commit is contained in:
2024-12-28 20:37:20 +01:00
parent ed3e59e079
commit dfa3d1c40a
68 changed files with 10699 additions and 1 deletions

23
back-nestjs/Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
# Use the official Node.js slim image as a base image
FROM node:18-slim
# Set the working directory inside the container
WORKDIR /app
# Copy package.json and package-lock.json to the working directory
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of the application code to the working directory
COPY . .
# Build the NestJS application
RUN npm run build
# Expose the port that the NestJS application runs on
EXPOSE 3000
# Start the NestJS application
CMD ["npm", "run", "start:prod"]