Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
tonne
/
buildkite
like
0
Build error
App
Files
Files
Community
main
buildkite
/
Dockerfile
tonne
Update buildkite
26f4d6f
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
186 Bytes
FROM
python:3.11.6-alpine3.18
RUN
apt-
get
update && apt-
get
install -y curl
USER tonne
WORKDIR /code
RUN
pip install fastapi uvicorn
COPY . /code
CMD [
"uvicorn"
,
"main:app"
,
"--reload"
]