Spaces:
Paused
Paused
File size: 327 Bytes
d7f1cb3 | 1 2 3 4 5 6 7 8 9 | FROM debian:bookworm-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl wget jq openjdk-21-jre-headless python3 procps && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY start.sh /app/start.sh
RUN chmod +x /app/start.sh
EXPOSE 7860
CMD ["/app/start.sh"]
|