Skip to content

Commit

Permalink
Testing out a dockerfile change to try to fix the installation errors…
Browse files Browse the repository at this point in the history
… for typescript versions
  • Loading branch information
roshanbellary committed Jan 27, 2025
1 parent 636a10f commit 42cdbeb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ LABEL org.opencontainers.image.licenses=MIT
WORKDIR /

COPY ./package.json ./package.json
RUN yarn install
RUN yarn add --dev [email protected]
COPY ./yarn.lock ./yarn.lock
RUN yarn install --frozen-lockfile
# RUN yarn install
# RUN yarn add --dev [email protected]

COPY . .

Expand Down

0 comments on commit 42cdbeb

Please sign in to comment.