Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
sfdingdang030/you2api
sem6688
/
you2api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
you2api
/
Dockerfile
nfsn
Create Dockerfile
358d591
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
200 Bytes
FROM
golang:
1.23
-bullseye
WORKDIR
/app
RUN
mkdir
-p /.cache && \
chmod
-R 777 /.cache
COPY
api/ ./api/
COPY
go.mod ./
RUN
go mod download
RUN
uname
-a
EXPOSE
7860
CMD
[
"go"
,
"run"
,
"api/main.go"
]