File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1- FROM node:20 AS shared-config
1+ FROM node:20-alpine AS shared-config
22# Install shared/config dependencies
33WORKDIR /
44COPY ./shared/config/package*.json .
55RUN npm install
66
7- FROM node:20 AS shared-database
7+ FROM node:20-alpine AS shared-database
88# Install shared/database dependencies
99WORKDIR /
1010COPY ./shared/database/package*.json .
1111RUN npm install
1212
13- FROM node:20 AS shared-logger
13+ FROM node:20-alpine AS shared-logger
1414# Install the shared/logger dependencies
1515WORKDIR /
1616COPY ./shared/logger/package*.json .
1717RUN npm install
1818
19- FROM node:20 AS collect-currency
19+ FROM node:20-alpine AS collect-currency
2020
2121WORKDIR /
2222
Original file line number Diff line number Diff line change 1- FROM node:20 AS shared-config
1+ FROM node:20-alpine AS shared-config
22# Install shared/config dependencies
33WORKDIR /
44COPY ./shared/config/package*.json .
55RUN npm install
66
7- FROM node:20 AS shared-database
7+ FROM node:20-alpine AS shared-database
88# Install shared/database dependencies
99WORKDIR /
1010COPY ./shared/database/package*.json .
1111RUN npm install
1212
13- FROM node:20 AS shared-logger
13+ FROM node:20-alpine AS shared-logger
1414# Install the shared/logger dependencies
1515WORKDIR /
1616COPY ./shared/logger/package*.json .
1717RUN npm install
1818
19- FROM node:20 AS server
19+ FROM node:20-alpine AS server
2020
2121WORKDIR /
2222
Original file line number Diff line number Diff line change 1- FROM python:3.13
1+ FROM python:3.13-alpine
22
33WORKDIR /
44
You can’t perform that action at this time.
0 commit comments