Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ladogton2010
/
mvc-demo
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
dc5eccf
mvc-demo
/
Dockerfile
ladogton2010
no directory
2fd378c
about 1 year ago
raw
Copy download link
history
blame
Safe
173 Bytes
FROM
debian:12.6
RUN
apt update -y
RUN
apt
upgrade
-y
RUN
apt install -y php php-pdo php-mysql
COPY app app
COPY public public
CMD [
"bash"
,
"-c"
,
"php -S 0.0.0.0:7860"
]