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:
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
over 1 year ago
Raw
Download with hf CLI
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"
]