1
0
forked from Yara724/api

Initial commit after migration to gitea

This commit is contained in:
2026-01-18 11:27:43 +03:30
parent a21039410c
commit ea4b8eb543
196 changed files with 45567 additions and 9 deletions

20
dev.Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
# Use the official Node.js image as the base image
FROM node:20-alpine
# Set the working directory inside the container
WORKDIR /app
# Copy package.json and package-lock.json to the working directory
COPY package*.json ./
# Install the project dependencies
RUN npm i --force
# Copy the rest of the application code to the working directory
COPY . .
# Expose the port on which your NestJS application will run
# EXPOSE 9000
# Start the NestJS application
CMD ["npm", "start"]