ai-backend / Dockerfile
Ashwini
Add application file
42738ce
raw
history blame
136 Bytes
FROM python:3.12-alpine
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["python3","main.py"]