Skip to content

Commit

Permalink
fix: Possible fix for Github actions stuck
Browse files Browse the repository at this point in the history
  • Loading branch information
RARgames committed Dec 30, 2023
1 parent 0f38fb8 commit 109bffd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 49 deletions.
44 changes: 0 additions & 44 deletions .github/workflows/build-and-push-docker-base-image.yml

This file was deleted.

10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ WORKDIR /app

COPY server/package.json server/package-lock.json .

RUN npm install npm@latest --global
RUN npm install pnpm --global
RUN npm install npm@latest --global --no-cache
RUN npm install pnpm --global --no-cache
RUN pnpm import
RUN pnpm install --prod

FROM node:lts AS client
FROM node:20-alpine AS client

WORKDIR /app

COPY client/package.json client/package-lock.json .

RUN npm install npm@latest --global
RUN npm install pnpm --global
RUN npm install npm@latest --global --no-cache
RUN npm install pnpm --global --no-cache
RUN pnpm import
RUN pnpm install --prod

Expand Down

0 comments on commit 109bffd

Please sign in to comment.