File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11# https://github.com/Visual-Regression-Tracker/Visual-Regression-Tracker/issues/137
2- FROM node:14 -alpine3.17 AS builder
2+ FROM node:18 -alpine3.18 AS builder
33
44# Create app directory
55WORKDIR /app
@@ -10,15 +10,15 @@ COPY ./prisma/schema.prisma ./
1010COPY package*.json ./
1111
1212# Install app dependencies
13- RUN npm ci
13+ RUN npm ci --verbose
1414
1515COPY tsconfig*.json ./
1616COPY src ./src
1717
1818RUN npm run build
1919
2020# https://github.com/Visual-Regression-Tracker/Visual-Regression-Tracker/issues/137
21- FROM node:14 -alpine3.17
21+ FROM node:18 -alpine3.18
2222COPY --from=builder /app/node_modules ./node_modules
2323COPY --from=builder /app/package*.json ./
2424COPY --from=builder /app/dist ./dist
Original file line number Diff line number Diff line change 11# https://github.com/Visual-Regression-Tracker/Visual-Regression-Tracker/issues/137
2- FROM node:14 -alpine3.17
2+ FROM node:18 -alpine3.18
33
44RUN apk add --no-cache bash
55
66WORKDIR /app
77
88COPY . .
99
10- RUN npm ci
10+ RUN npm ci --verbose
1111
1212RUN chmod +x /app/wait-for-it.sh
1313RUN chmod +x /app/entrypoint.sh
You can’t perform that action at this time.
0 commit comments