llm / Dockerfile
iq7se2's picture
Create Dockerfile
3ad5644 verified
raw
history blame contribute delete
456 Bytes
FROM python:3.10
RUN apt-get update && apt-get install -y xvfb x11vnc novnc websockify fluxbox git
RUN git clone https://github.com/dmMaze/BallonsTranslator.git /app
WORKDIR /app
RUN pip install -r requirements.txt
RUN wget -q https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -O /usr/local/bin/cloudflared && chmod +x /usr/local/bin/cloudflared
COPY start.sh /start.sh
RUN chmod +x /start.sh
CMD ["/start.sh"]