File size: 389 Bytes
c22d045
422d74a
 
 
 
bb7d4ff
 
 
 
 
422d74a
348b48e
422d74a
d68ca91
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND noninteractive

RUN apt-get update -y && apt-get upgrade -y && apt-get install -y libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3

RUN adduser --disabled-password --gecos '' user
RUN mkdir /content && chown -R user:user /content
WORKDIR /content
USER user

RUN pip3 install --upgrade pip
RUN pip install gradio==3.18.0

EXPOSE 7860