File size: 355 Bytes
8170739
4903c9c
8170739
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
# Use the official AutoTrain Advanced image
FROM huggingface/autotrain-advanced:latest

# Update autotrain-advanced to the latest version
RUN pip uninstall -y autotrain-advanced && \
    pip install -U autotrain-advanced

# Expose the port for the AutoTrain app
EXPOSE 7860

# Run the AutoTrain app
CMD autotrain app --host 0.0.0.0 --port 7860 --workers 1