mirror of
https://github.com/zebrajr/Reactive-Resume.git
synced 2026-01-15 12:15:43 +00: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