Skip to content

Commit

Permalink
Merge pull request #35 from raferdev/development
Browse files Browse the repository at this point in the history
build(dockerfile): bump container and pnpm version to the latest
  • Loading branch information
raferdev authored Feb 2, 2024
2 parents 51e2f5f + 210f7b1 commit 2772ba6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine AS base
FROM node:20-alpine AS base

FROM base AS deps
RUN apk add --no-cache libc6-compat
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
- name: Setup Node & Pnpm
uses: pnpm/action-setup@v2
with:
version: 8.9.2
version: 8.14.1
- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'
cache: 'pnpm'

- name: Create env file
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
- name: Setup Node & Pnpm
uses: pnpm/action-setup@v2
with:
version: 8.9.2
version: 8.14.1
- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'
cache: 'pnpm'
- name: Create env file
run: |
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:18-alpine AS base
FROM node:20-alpine AS base

RUN apk add --no-cache libc6-compat
RUN npm i -g pnpm@8.9.2
RUN npm i -g pnpm@8.14.1

FROM base AS deps

Expand Down
2 changes: 1 addition & 1 deletion tests/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-slim AS base
FROM node:20-slim AS base
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
ENV CI=true
Expand Down

0 comments on commit 2772ba6

Please sign in to comment.