Add Docker development workflow

This commit is contained in:
Julian Appel 2026-07-22 22:42:28 +02:00
parent 00cb07f848
commit c991f493da
6 changed files with 127 additions and 5 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM node:22-bookworm-slim
WORKDIR /app
ENV NEXT_TELEMETRY_DISABLED=1
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
EXPOSE 3000 3001