mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-25 01:15:26 +10:00
[2.6.3] update dockerfile to add other required packages
This commit is contained in:
+15
-9
@@ -1,15 +1,21 @@
|
|||||||
FROM node:alpine as builder
|
FROM node:alpine as builder
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
RUN apk update \
|
RUN apk add --update --no-cache \
|
||||||
&& apk add --no-cache \
|
g++ \
|
||||||
g++ \
|
yasm \
|
||||||
yasm \
|
bash \
|
||||||
make \
|
make \
|
||||||
automake \
|
automake \
|
||||||
autoconf \
|
autoconf \
|
||||||
libtool \
|
libtool \
|
||||||
vips-dev
|
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 ./
|
COPY package*.json ./
|
||||||
RUN npm ci
|
RUN npm ci
|
||||||
|
|||||||
Reference in New Issue
Block a user