antragsideen-hagen/backend/Dockerfile
Dotty Dotter 34d5671997 Initial commit: Antragsideen-App Skeleton
- Backend (FastAPI)
- Frontend
- Docker Compose
- README
2026-03-30 23:49:13 +02:00

14 lines
179 B
Docker

FROM node:20-alpine
RUN apk add --no-cache python3 make g++ wget
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev
COPY . .
EXPOSE 3000
CMD ["node", "server.js"]