Skip to content

Commit

Permalink
use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
zuisong committed Jan 16, 2024
1 parent 1709161 commit 4876b6b
Show file tree
Hide file tree
Showing 6 changed files with 552 additions and 838 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
4 changes: 2 additions & 2 deletions docker/deno.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG DENO_VERSION=1
FROM lukechannings/deno:v${DENO_VERSION} as builder
ARG DENO_VERSION=latest
FROM lukechannings/deno:${DENO_VERSION} as builder
WORKDIR /data
COPY . .
RUN deno cache main_deno.ts
Expand Down
2 changes: 1 addition & 1 deletion docker/node.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ ARG NODE_VERSION=21
FROM node:${NODE_VERSION}
WORKDIR /data
COPY . .
RUN npm install
RUN npm install -g pnpm && pnpm install
CMD npm run start:node
Loading

0 comments on commit 4876b6b

Please sign in to comment.