Spaces:
Sleeping
Sleeping
FROM ghcr.io/withlogicco/poetry:1.4.2 | |
WORKDIR /code | |
COPY pyproject.toml . | |
COPY poetry.lock . | |
RUN poetry install -vv --no-root --without dev | |
COPY . . | |
# second time since --no-root was used | |
RUN poetry install --only-root | |
ENTRYPOINT ["streamlit", "run", "shad_mlops_transformers/main.py"] |