You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
482 B
16 lines
482 B
FROM node:18-alpine as build
|
|
RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev libpng-dev vips-dev git > /dev/null 2>&1
|
|
ENV NODE_ENV=production
|
|
ENV STRAPI_DISABLE_UPDATE_NOTIFICATION=true
|
|
ENV STRAPI_TELEMETRY_DISABLED=true
|
|
|
|
|
|
WORKDIR /opt/
|
|
COPY package.json yarn.lock ./
|
|
RUN yarn global add node-gyp
|
|
RUN yarn config set network-timeout 600000 -g && yarn install --production
|
|
ENV PATH /opt/node_modules/.bin:$PATH
|
|
WORKDIR /opt/app
|
|
COPY . .
|
|
RUN yarn build
|