dp / Dockerfile
MISASI's picture
Update Dockerfile
dbfbc40 verified
raw
history blame contribute delete
193 Bytes
FROM python:3.9
WORKDIR /app
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/dasasdsadsww/PyDeepLX.git app
EXPOSE 7860
CMD ["python", "/PyDeepLX/PyDeepLX.py"]