image-gen / Dockerfile
BeveledCube's picture
Hopefully fixed shi
0ea1363
raw
history blame
No virus
199 Bytes
FROM python:3.11
WORKDIR /api
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
RUN mkdir /api/cache
RUN chmod a+rwx /api/cache
COPY ./ /api/
EXPOSE 7860
CMD ["bash", "start.sh"]