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