Spaces:
Build error
Build error
File size: 417 Bytes
126f6fe 0fc48d1 126f6fe d86695a 126f6fe d86695a 126f6fe d86695a 126f6fe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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"] |