diff --git a/.drone.yml b/.drone.yml index 6208b75..90fee42 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,9 +1,9 @@ ################################################################################ -# Landing +# web ################################################################################ kind: pipeline type: docker -name: (web landing) build form and push to artifactory +name: (landing) build form and push to artifactory steps: - name: tag @@ -19,11 +19,11 @@ steps: - echo "APP Version tags $APP_VERSION" - echo -n "$APP_VERSION" >> .tags - - name: build landing + - name: build landing image: plugins/docker settings: - # build_args: - # - BUILD_APP=landing + # build_args: + # - BUILD_APP=scraper username: cicd password: from_secret: REGISTRY_PASSWORD @@ -36,5 +36,6 @@ node: trigger: branch: - main + - develop event: - - custom \ No newline at end of file + - custom diff --git a/Dockerfile b/Dockerfile index 84b7c39..5d74b1c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,32 @@ -FROM nginx:alpine +FROM node:22.19.0 AS builder -COPY . /usr/share/nginx/html/ +WORKDIR /app +# RUN apk add --no-cache libc6-compat -EXPOSE 80 -CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file +COPY package*.json ./ +RUN npm i + + +COPY . . + +RUN docker build . + +#--- + +FROM node:22.19.0 AS runner + +WORKDIR /app + + +COPY package*.json ./ +RUN npm ci --omit=dev + +COPY --from=builder /app/.next ./.next +COPY --from=builder /app/public ./public +COPY --from=builder /app/node_modules ./node_modules +COPY --from=builder /app/package*.json ./ + +EXPOSE 3000 + +CMD ["npm", "start"]