Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
liquidcarbon
/
pup-fileserver
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
67a7597
pup-fileserver
/
Dockerfile
pup-py
split to 2
67a7597
about 1 year ago
raw
Copy download link
history
blame
Safe
252 Bytes
FROM alpine:latest
RUN
apk add --no-cache bash
WORKDIR /code
COPY . .
RUN
./pup
RUN
pup py3
.11
# EXPOSE
7860
#
CMD
[
"uvicorn"
,
"app.main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]
CMD [
"python3"
,
"-m"
,
"http.server"
,
"7860"
,
"--directory"
,
"."
]