care_agents / Dockerfile
omgy's picture
Create Dockerfile
fb7e5bb verified
raw
history blame contribute delete
253 Bytes
FROM python:3.11-slim
WORKDIR /app
# copy
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# make entrypoint executable
RUN chmod +x /app/entrypoint.sh
EXPOSE 7860 # HF default for web
CMD ["/app/entrypoint.sh"]