chore: clean up repo, add README and .gitignore

This commit is contained in:
2026-03-21 23:11:46 +00:00
parent bbd847a81b
commit 9f5d322b00
5 changed files with 107 additions and 30 deletions

View File

@@ -1,7 +1,16 @@
FROM node:16-alpine
FROM node:20-alpine
WORKDIR /app
# Copy package files first for better layer caching
COPY package*.json ./
RUN npm install
# Install dependencies
RUN npm ci --only=production
# Copy application code
COPY . .
EXPOSE 3000
CMD ["npm", "start"]
CMD ["node", "server.js"]