Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
getapi
/
oxipng
like
0
Runtime error
App
Files
Files
Community
5cb3728
oxipng
/
Dockerfile
getapi
Update Dockerfile
fd45532
verified
5 months ago
raw
Copy download link
history
blame
Safe
152 Bytes
FROM
python:
3.12
WORKDIR
/code
RUN
pip install fastapi httpx pydantic uvicorn
COPY
. .
RUN
chmod
777 /code &&
chmod
777 /code/*
CMD
python /code/app.py