flask-llama / Dockerfile
YZ-TAN's picture
Upload 2821 files
5a29263 verified
raw
history blame contribute delete
150 Bytes
FROM python:3.9
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
RUN chmod +x start.sh
EXPOSE 8000
CMD ["bash", "start.sh"]