Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SketchyAI
/
linum
like
0
Running
App
Files
Files
Community
main
linum
/
backend
/
Dockerfile
Rémy
Add Linux Practice Tool files
f716e02
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
151 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
app.py .
CMD
[
"python"
,
"app.py"
]