Skip to content

Commit

Permalink
npm
Browse files Browse the repository at this point in the history
  • Loading branch information
yordanovsstoyan committed Jun 21, 2024
1 parent 7dab678 commit 0f0566b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN npm run build
FROM python:3.10-slim AS backend

RUN apt-get -y update && \
apt-get --no-install-recommends -y install libc6-dev gcc libgraphviz-dev
apt-get --no-install-recommends -y install libc6-dev gcc libgraphviz-dev build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev

WORKDIR /app

Expand All @@ -27,7 +27,7 @@ RUN pip install poetry && \
FROM python:3.10-slim AS prod

RUN apt-get -y update && \
apt-get --no-install-recommends -y install graphviz build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev && \
apt-get --no-install-recommends -y install graphviz && \
rm -rf /var/lib/apt/lists/*

WORKDIR /app
Expand Down

0 comments on commit 0f0566b

Please sign in to comment.