Skip to content

Commit

Permalink
fix pnpm version issue
Browse files Browse the repository at this point in the history
  • Loading branch information
juunini committed Dec 26, 2023
1 parent aa78f35 commit f2065d1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Builder.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ FROM --platform=linux/arm64 debian:bullseye-slim

RUN apt update -y
RUN apt install -y git python3 make g++ ffmpeg curl
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash -
RUN curl -SLO https://deb.nodesource.com/nsolid_setup_deb.sh
RUN chmod 500 nsolid_setup_deb.sh
RUN ./nsolid_setup_deb.sh 21
RUN apt install -y nodejs
RUN npm i -g npm pnpm typescript vite @swc/cli typeorm
4 changes: 2 additions & 2 deletions YodangangExpress.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM juunini/misskey:builder-0.2 AS builder
FROM juunini/misskey:builder-0.3 AS builder

COPY . /misskey
WORKDIR /misskey
Expand All @@ -12,7 +12,7 @@ RUN corepack enable
RUN pnpm install
RUN pnpm build

FROM juunini/misskey:builder-0.2
FROM juunini/misskey:builder-0.3

RUN apt install -y tini

Expand Down

0 comments on commit f2065d1

Please sign in to comment.