smp / Dockerfile
MuzammilMax's picture
Update Dockerfile
ea656f8 verified
Raw
History Blame Contribute Delete
291 Bytes
FROM openjdk:21-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
python3 python3-pip curl wget unzip \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip3 install --break-system-packages -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python3", "app.py"]