y2oa / Dockerfile
ykl45's picture
Update Dockerfile
8b06e17 verified
raw
history blame contribute delete
209 Bytes
FROM python:3.11
RUN apt update
RUN apt install git
RUN git clone https://github.com/renqabs/Y2OA.git /app
WORKDIR "app"
RUN pip install -r requirements.txt
ENV PORT 7860
EXPOSE 7860
CMD ["python", "main.py"]