Chattr / Dockerfile
MH0386's picture
Update Dockerfile
c72fec1 verified
raw
history blame contribute delete
384 Bytes
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:1fd981aa0bcefd8da87ce55a9ae907862fcb6835c658fdb284867117fb0268ce
ENV GRADIO_SERVER_PORT=7860 \
GRADIO_SERVER_NAME=0.0.0.0 \
FASTEMBED_CACHE_PATH=/fastembed
# skipcq: DOK-DL3018
RUN apk add --no-cache curl libstdc++ uv python3 && \
uv tool install chattr
EXPOSE ${GRADIO_SERVER_PORT}
CMD ["uvx", "--no-cache", "chattr"]