Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
game-wake-wolf/dev
alcex
/
dev
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
086e946
dev
/
Dockerfile
game-wake-wolf
Update Dockerfile
086e946
verified
over 1 year ago
raw
Copy download link
history
blame
195 Bytes
FROM
python:
3.11
-slim-bookworm
WORKDIR
/app
COPY
api/ ./api/
COPY
go.mod go.sum ./
RUN
apt-get update && apt-get install -y golang-go
RUN
go mod download
EXPOSE
8080
CMD
[
"go"
,
"run"
,
"./api"
]