Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aimstack
/
digit-recognition
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0f0f5e3
digit-recognition
/
Dockerfile
mvanyan
Create Dockerfile
0f0f5e3
about 2 years ago
raw
Copy download link
history
blame
Safe
208 Bytes
FROM
python:
3.9
WORKDIR
/code
RUN
pip install aim
COPY
mnist_logs.tar.gz .
RUN
tar -xzf mnist_logs.tar.gz
RUN
chmod
-R 777 /code
CMD
[
"aim"
,
"up"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
,
"--workers"
,
"2"
]