This commit is contained in:
2025-06-30 13:08:35 +00:00
parent 1bf921a56e
commit 841cb61acf
579 changed files with 0 additions and 70142 deletions

View File

@@ -1,23 +0,0 @@
# Resource Provider (Node.js) Dockerfile
FROM node:20-alpine
# Set working directory
WORKDIR /app
# Install pnpm globally
RUN npm install -g pnpm
# Copy package.json and pnpm-lock.yaml
COPY package.json pnpm-lock.yaml* ./
# Install dependencies
RUN pnpm install --frozen-lockfile
# Copy the rest of the application
COPY . .
# Expose port
EXPOSE 3000
# Start the Node.js application
CMD ["node", "server.js"]