forked from jappel/leistungsbilanz-ts
Add Docker development workflow
This commit is contained in:
parent
00cb07f848
commit
c991f493da
6 changed files with 127 additions and 5 deletions
12
Dockerfile
Normal file
12
Dockerfile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue