You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
490 B
Docker
20 lines
490 B
Docker
5 months ago
|
FROM node:18-alpine3.18
|
||
|
|
||
|
RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev libpng-dev nasm bash vips-dev git
|
||
|
ARG NODE_ENV=development
|
||
|
ENV NODE_ENV=${NODE_ENV}
|
||
|
|
||
|
WORKDIR /opt/
|
||
|
COPY package.json yarn.lock ./
|
||
|
RUN yarn global add node-gyp
|
||
|
RUN yarn config set network-timeout 600000 -g && yarn install
|
||
|
ENV PATH /opt/node_modules/.bin:$PATH
|
||
|
|
||
|
WORKDIR /opt/app
|
||
|
COPY . .
|
||
|
RUN chown -R node:node /opt/app
|
||
|
USER node
|
||
|
RUN ["yarn", "build"]
|
||
|
EXPOSE 1337
|
||
|
CMD ["yarn", "develop"]
|