TunisianEncodersArena / Dockerfile
hamzabouajila's picture
add dockerfile , add pydantic to requirements.txt
c8eec02
raw
history blame
159 Bytes
FROM python:3.12.7-slim
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
CMD ["sh", "-c", "python app.py & python src/evaluator/run_evaluator.py"]