cloud2 / Dockerfile
Rooni's picture
Update Dockerfile
0fc48d1
raw
history blame contribute delete
417 Bytes
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"]