🔧 Added npm i step

This commit is contained in:
2025-02-20 22:04:01 -05:00
parent 481878c19f
commit 40a0edadbb

View File

@@ -6,6 +6,10 @@ WORKDIR /acquisition-service
# Install dependencies # Install dependencies
COPY package.json package-lock.json ./ COPY package.json package-lock.json ./
# Install application dependencies
RUN npm install
RUN npm install -g typescript ts-node
# Copy source # Copy source
COPY . . COPY . .