10 lines
135 B
Docker
10 lines
135 B
Docker
FROM python:3.11
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . .
|
|
CMD ["python", "backend/app.py"] |