cpu-casuallm / Dockerfile
Somunia's picture
Update Dockerfile
6bfd1d4 verified
raw
history blame
387 Bytes
# Use the base image from your Docker container
FROM trcoot/cpu-casuallm:latest
# Set the environment variable for the Hugging Face cache directory
ENV HF_HOME=/app/.cache
# Create the cache directory and give the appropriate permissions
RUN mkdir -p /app/.cache && chmod 777 /app/.cache
# Start the application (modify this based on your app's entry point)
CMD ["python", "app.py"]