mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-09 20:12:26 +10:00
[2.6.3] update dockerfile to add other required packages
This commit is contained in:
24
Dockerfile
24
Dockerfile
@ -1,15 +1,21 @@
|
||||
FROM node:alpine as builder
|
||||
WORKDIR /app
|
||||
|
||||
RUN apk update \
|
||||
&& apk add --no-cache \
|
||||
g++ \
|
||||
yasm \
|
||||
make \
|
||||
automake \
|
||||
autoconf \
|
||||
libtool \
|
||||
vips-dev
|
||||
RUN apk add --update --no-cache \
|
||||
g++ \
|
||||
yasm \
|
||||
bash \
|
||||
make \
|
||||
automake \
|
||||
autoconf \
|
||||
libtool \
|
||||
zlib-dev \
|
||||
libpng-dev
|
||||
|
||||
RUN apk add --update --no-cache \
|
||||
--repository http://dl-3.alpinelinux.org/alpine/edge/community \
|
||||
--repository http://dl-3.alpinelinux.org/alpine/edge/main \
|
||||
vips-dev
|
||||
|
||||
COPY package*.json ./
|
||||
RUN npm ci
|
||||
|
||||
Reference in New Issue
Block a user