gen3c / Dockerfile
elungky's picture
Configure Space to run GEN3C FastAPI inference server
8d604f9
raw
history blame
373 Bytes
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"]