project setup
Some checks failed
Build and Push to Scaleway Registry / build (push) Failing after 23s
Runner Test / test-connection (push) Successful in 3s

This commit is contained in:
2026-02-07 19:20:20 +01:00
parent efb5e8b3e4
commit 79fb5ec55b
8 changed files with 1083 additions and 0 deletions

23
Containerfile Normal file
View File

@@ -0,0 +1,23 @@
# Build Stage
FROM node:24-slim AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY tsconfig.json ./
COPY src/ .
RUN npm run build
# Run Stage
FROM node:24-slim
WORKDIR /app
ENV NODE_ENV=production
COPY --from=builder /app .
EXPOSE 3300
CMD ["node", "dist/index.js"]