dockerfile/examples/omnivore/official-src/omnivore-main/packages/rule-handler/Dockerfile

27 lines
628 B
Docker

FROM node:18.16-alpine
# Run everything after as non-privileged user.
WORKDIR /app
COPY package.json .
COPY yarn.lock .
COPY tsconfig.json .
COPY .eslintrc .
COPY /packages/rule-handler/package.json ./packages/rule-handler/package.json
RUN yarn install --pure-lockfile
ADD /packages/rule-handler ./packages/rule-handler
RUN yarn workspace @omnivore/rule-handler build
# After building, fetch the production dependencies
RUN rm -rf /app/packages/rule-handler/node_modules
RUN rm -rf /app/node_modules
RUN yarn install --pure-lockfile --production
EXPOSE 8080
CMD ["yarn", "workspace", "@omnivore/rule-handler", "start"]