Skip to content
Snippets Groups Projects
Commit 394dbb81 authored by Leonardo's avatar Leonardo
Browse files

chore: include more deps for service to support canvas-based plotly image generation

parent b8963d51
No related branches found
No related tags found
No related merge requests found
Pipeline #143615 failed
...@@ -6,7 +6,20 @@ WORKDIR /usr/src/app ...@@ -6,7 +6,20 @@ WORKDIR /usr/src/app
# install dependencies into temp directory # install dependencies into temp directory
# this will cache them and speed up future builds # this will cache them and speed up future builds
RUN apk add --no-cache git RUN apk add --no-cache git
RUN apk add --no-cache python3
# Install dependencies for building canvas
RUN apk add --no-cache \
python3 \
make \
g++ \
pkgconf \
pixman-dev \
cairo-dev \
pango-dev \
libjpeg-turbo-dev \
giflib-dev \
freetype-dev \
fontconfig-dev
RUN mkdir /app RUN mkdir /app
WORKDIR /app WORKDIR /app
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment