Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions chat-ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ RUN pip install --upgrade --no-cache-dir hatch pip beaker-kernel
USER jupyter
WORKDIR /jupyter

COPY ./beaker-biome /opt/beaker-biome
COPY ./beaker-biome /jupyter/beaker-biome
USER root
RUN chown -R jupyter:users /opt/beaker-biome
RUN chown -R jupyter:users /jupyter/beaker-biome
USER jupyter
RUN cd /opt/beaker-biome && hatch build
RUN pip install /opt/beaker-biome/dist/beaker_biome*.whl

# RUN cd /opt/beaker-biome && hatch build
# RUN pip install /opt/beaker-biome/dist/beaker_biome*.whl
RUN pip install -e /jupyter/beaker-biome
1 change: 1 addition & 0 deletions chat-ui/beaker-biome/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ classifiers = [
dependencies = [
"beaker-kernel>=1.6.5",
"requests",
"google-generativeai"
]

[project.urls]
Expand Down
Loading