Skip to content

Commit

Permalink
added context-diagrams deps
Browse files Browse the repository at this point in the history
  • Loading branch information
vik378 committed Mar 22, 2024
1 parent e8ab8c9 commit 7cf1c16
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,21 @@ WORKDIR /app
COPY ./capella_model_explorer ./capella_model_explorer
COPY ./pyproject.toml ./
COPY ./.git ./.git
RUN apt-get update && apt-get install -y git

USER root

RUN apt-get update && \
apt-get install --yes --no-install-recommends \
git \
git-lfs \
libgirepository1.0-dev \
libcairo2-dev \
gir1.2-pango-1.0 \
graphviz \
nodejs \
npm && \
rm -rf /var/lib/apt/lists/*

RUN pip install .
COPY --from=build-frontend /app/dist/ ./frontend/dist/

Expand Down

0 comments on commit 7cf1c16

Please sign in to comment.