Skip to content

Commit

Permalink
Merge pull request #114 from PermanentOrg/PER-9743-replace-vagrant-wi…
Browse files Browse the repository at this point in the history
…th-docker

PER-9743: Add build stage to Dockerfile for local dev env
  • Loading branch information
liam-lloyd authored Aug 19, 2024
2 parents 0b2a952 + 4ce6a7c commit 2f255a6
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 2f255a6

Please sign in to comment.