Rhea / Dockerfile
bekirmfr's picture
Create Dockerfile
1a417fb verified
raw
history blame
No virus
264 Bytes
# 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"]