Skip to content

Commit

Permalink
PER-9743: Add build stage to Dockerfile for local dev env
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Harapu committed Aug 14, 2024
1 parent 0b2a952 commit 4ce6a7c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/api/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ COPY .env ./

RUN npm install -g npm@9.5.0
RUN npm cache clean --force
RUN npm install
RUN npm install --dev
RUN npm install -ws
RUN npm install \
&& npm install --dev \
&& npm install -ws
RUN npm run build -ws
ENV PATH=/usr/local/apps/stela/node_modules/.bin:$PATH

EXPOSE 8080
Expand Down

0 comments on commit 4ce6a7c

Please sign in to comment.