Spaces:
Build error
Build error
FROM elungky/gen3c:latest | |
WORKDIR /app | |
COPY . /app | |
# Install dependencies specific to the GUI/inference server | |
# This assumes 'gui/requirements.txt' is directly under the '/app' directory after COPY. | |
RUN pip install -r gui/requirements.txt | |
# Ensure start.sh is executable | |
RUN chmod +x /app/start.sh | |
# Use start.sh as the entrypoint for your Space | |
CMD ["/app/start.sh"] |