Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
Alignment-Lab-AI
/
ARC-stuff
like
0
Dataset card
Data Studio
Files
Files and versions
xet
Community
ae779ad
ARC-stuff
/
MINI-ARC
/
server
/
Dockerfile
Alignment-Lab-AI
Upload folder using huggingface_hub
d5bfab8
verified
about 1 year ago
raw
Copy download link
history
blame
163 Bytes
FROM
python:
3.8
RUN
pip install Flask gunicorn
COPY
src/ app/
WORKDIR
/app
ENV
PORT
5000
CMD
exec
gunicorn --
bind
:
$PORT
--workers 1 --threads 8 app:app