File size: 288 Bytes
f7a65ec
 
 
 
 
 
7379bd2
1dc6869
 
7379bd2
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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"]