This commit is contained in:
Johannes
2026-03-12 19:02:35 +01:00
parent 99bf15c859
commit 77e6cf14c9
2 changed files with 15 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
EXPOSE 3000
CMD ["node", "server.js"]

8
docker-compose.yml Normal file
View File

@@ -0,0 +1,8 @@
services:
cookbook:
build: .
restart: unless-stopped
ports:
- "3000:3000"
volumes:
- ./recipes:/app/recipes