llama3-api / Dockerfile
lastang3l's picture
Use gr.load() for meta-llama
8670163
raw
history blame contribute delete
163 Bytes
FROM python:3.10-slim
WORKDIR /app
# Install requirements
RUN pip install --no-cache-dir gradio
# Copy app
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"]