Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
krisha06
/
Python_tutor
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e667312
Python_tutor
/
Dockerfile
krisha06
Create Dockerfile
18054c4
verified
over 1 year ago
Raw
Download with hf CLI
Copy download link
History
Blame
Safe
209 Bytes
FROM
python:
3.10
# Set working directory
WORKDIR
/app
# Copy files
COPY
. .
# Install dependencies
RUN
pip install -r requirements.txt
# Run fine-tuning when the Space starts
CMD
[
"python"
,
"finetune.py"
]