llmstxt / Dockerfile
mysketches's picture
Deploy
c6582f6
raw
history blame contribute delete
300 Bytes
FROM python:3
ADD requirements.txt requirements.txt
RUN apt-get update && apt-get install -y \
net-tools \
iputils-ping \
curl \
&& rm -rf /var/lib/apt/lists/*
RUN pip install -r requirements.txt
RUN mkdir /home/project
EXPOSE 7860
WORKDIR /home/project
CMD ["python", "app.py"]