# Example Dockerfile for an LLM | |
FROM python:3.8 | |
# Install dependencies | |
RUN pip install transformers torch flask | |
# Add your application code | |
COPY . /app | |
WORKDIR /app | |
# Expose the port the app runs on | |
EXPOSE 5000 | |
# Command to run the app | |
CMD ["python", "app.py"] |