feat: move to marmite

This commit is contained in:
2024-12-27 12:27:06 +01:00
parent d7952ad640
commit 4e3576d4a7
34 changed files with 49 additions and 12953 deletions

View File

@@ -1,19 +1,9 @@
FROM node:22-alpine AS base
FROM ghcr.io/rochacbruno/marmite
RUN apk add --no-cache libc6-compat
WORKDIR /input
WORKDIR /app
COPY . ./
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
RUN npm run build && npm cache clean --force
EXPOSE 3000
ENV PORT 3000
CMD ["npm", "run", "start"]
CMD ["--serve", "--bind", "0.0.0.0:3000"]