Files
gitea-auto-urls/Dockerfile
Pihkaal 51e1796434
All checks were successful
Build and Push Docker Image / build (push) Successful in 11s
chore: clean dockerfile
2025-12-21 17:23:24 +01:00

15 lines
232 B
Docker

FROM node:20-alpine
WORKDIR /app
COPY package.json pnpm-lock.yaml ./
RUN corepack enable && corepack prepare pnpm@10.25.0 --activate
RUN pnpm install --frozen-lockfile
COPY . .
RUN pnpm run build
CMD ["node", "dist/index.js"]