Implement AI orchestration wedding demo
This commit is contained in:
10
docker/backend.Dockerfile
Normal file
10
docker/backend.Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM python:3.12-slim
|
||||
|
||||
WORKDIR /app
|
||||
ENV PYTHONDONTWRITEBYTECODE=1
|
||||
ENV PYTHONUNBUFFERED=1
|
||||
|
||||
COPY . .
|
||||
RUN pip install --no-cache-dir -e ".[dev]"
|
||||
|
||||
EXPOSE 8000
|
||||
8
docker/frontend.Dockerfile
Normal file
8
docker/frontend.Dockerfile
Normal file
@@ -0,0 +1,8 @@
|
||||
FROM node:22-alpine
|
||||
|
||||
WORKDIR /app
|
||||
COPY package.json ./
|
||||
RUN npm install
|
||||
COPY . .
|
||||
|
||||
EXPOSE 5173
|
||||
Reference in New Issue
Block a user