Skip to content

Commit

Permalink
Merge pull request #564 from Arup20MA20010/canva-docker-update
Browse files Browse the repository at this point in the history
update docker file fixing error in 'RUN npm install' caused by canvas package
  • Loading branch information
hkirat authored May 12, 2024
2 parents 92df7f2 + 4a00a10 commit c9eac54
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@ FROM node:20-alpine

WORKDIR /usr/src/app

RUN apk add --update --no-cache \
make \
g++ \
jpeg-dev \
cairo-dev \
giflib-dev \
pango-dev \
libtool \
autoconf \
automake

COPY package.json package-lock.json ./
COPY prisma ./prisma

Expand Down

0 comments on commit c9eac54

Please sign in to comment.