chore: remove node_modules, add .gitignore and README

This commit is contained in:
2026-03-21 23:12:58 +00:00
parent c644fc492d
commit f8cbc089b1
4846 changed files with 141 additions and 534519 deletions

View File

@@ -1,11 +1,11 @@
FROM node:20-slim
FROM node:20-alpine
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
COPY package*.json ./
RUN npm install
RUN npm ci --only=production
# Bundle app source
COPY . .