File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 4343
4444 - name : Apply DB migrations
4545 run : npx prisma migrate up -c --experimental
46+
47+ - name : Seed DB data
48+ run : npx ts-node ./prisma/seed.ts
4649
4750 - name : Run e2e tests
4851 run : npm run test:e2e
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ COPY src ./src
1919RUN npm run build
2020
2121# TODO use node-alpine when supported by prisma2 https://github.com/prisma/prisma2/issues/702
22- FROM node:12-alpine
22+ FROM node:12.18.4 -alpine
2323COPY --from=builder /app/node_modules ./node_modules
2424COPY --from=builder /app/package*.json ./
2525COPY --from=builder /app/dist ./dist
Original file line number Diff line number Diff line change 1- FROM node:12-alpine
1+ FROM node:12.18.4 -alpine
22
33RUN apk add --no-cache bash
44
You can’t perform that action at this time.
0 commit comments