Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
qywok
/
tebakaja_proxy_space-3
like
1
Sleeping
App
Files
Files
Community
a8ebadf
tebakaja_proxy_space-3
/
Dockerfile
tebakaja
update: add docker and actions config
0503b31
5 months ago
raw
Copy download link
history
blame
Safe
158 Bytes
FROM
golang:
1.20
LABEL
creator=
"qywok"
WORKDIR
/app
COPY
go.mod go.sum ./
RUN
go mod download
COPY
. .
RUN
go build -o main
EXPOSE
7860
CMD
[
"./main"
]