Spaces:
Build error
Build error
RUN git clone https://github.com/heartexlabs/label-studio.git | |
WORKDIR "label-studio" | |
RUN cd label-studio | |
RUN pip install -e . | |
# Run database migrations | |
RUN python label_studio/manage.py migrate | |
# Collect static files | |
RUN python label_studio/manage.py collectstatic | |
# Start the server in development mode at http://localhost:8080 | |
RUN python label_studio/manage.py runserver | |
# RUN npm run build | |
EXPOSE 3000 | |
CMD ["run"] |