yt-keys / Dockerfile
arshitmalik's picture
Add Node.js for keyscan
e2dfa02 verified
Raw
History Blame Contribute Delete
289 Bytes
FROM python:3.11-slim-bookworm
RUN apt-get update && apt-get install -y \
curl git nodejs npm \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install --break-system-packages \
requests huggingface_hub
WORKDIR /app
COPY . .
RUN chmod +x start.sh
EXPOSE 7860
CMD ["/app/start.sh"]