12 أسطر
159 B
Docker
12 أسطر
159 B
Docker
FROM python:3.12.3-slim
|
|
|
|
WORKDIR /jobfitai
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD [ "python3", "main.py"]
|