File size: 309 Bytes
b064b9f 5d28cee b064b9f 5d28cee b064b9f | 1 2 3 4 5 6 7 8 9 10 11 12 13 | FROM gradio/gradio:4.36.1-py310
USER root
RUN apt-get update && \
apt-get install -y --no-install-recommends wireguard-tools && \
apt-get clean && rm -rf /var/lib/apt/lists/*
USER user
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
CMD ["python", "app.py"]
|