image-gen / Dockerfile
BeveledCube's picture
Pls work
a2422c2
raw
history blame
133 Bytes
FROM python:3.11
WORKDIR /api
COPY ./ /api/
RUN mkdir /api/cache
RUN chmod a+rwx /api/cache
EXPOSE 7860
CMD ["bash", "start.sh"]