Skip to content

Commit

Permalink
Update docker files
Browse files Browse the repository at this point in the history
  • Loading branch information
raducristianpopa committed Oct 13, 2023
1 parent d163301 commit df64dd2
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docker/dev/local-http-signatures/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt install -y curl xz-utils python3 build-essential

# version in curl is not the version used. Dependent on the last command
RUN corepack enable
RUN corepack prepare pnpm@8.8.0 --activate
RUN corepack prepare pnpm@8.9.0 --activate

# pnpm fetch does require only lockfile
COPY pnpm-lock.yaml ./
Expand Down
2 changes: 1 addition & 1 deletion packages/boutique/backend/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WORKDIR /home/testnet

# Install PNPM
RUN corepack enable
RUN corepack prepare pnpm@8.8.0 --activate
RUN corepack prepare pnpm@8.9.0 --activate

# Copy lockfile, NVM and NPM configuration to the working directory
COPY pnpm-lock.yaml .nvmrc .npmrc ./
Expand Down
2 changes: 1 addition & 1 deletion packages/boutique/backend/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:18-alpine AS base
WORKDIR /testnet

RUN corepack enable
RUN corepack prepare pnpm@8.8.0 --activate
RUN corepack prepare pnpm@8.9.0 --activate
RUN apk add --no-cache \
libc6-compat \
python3 \
Expand Down
2 changes: 1 addition & 1 deletion packages/boutique/frontend/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:18-alpine AS base
WORKDIR /testnet

RUN corepack enable
RUN corepack prepare pnpm@8.8.0 --activate
RUN corepack prepare pnpm@8.9.0 --activate

RUN apk add --no-cache \
libc6-compat \
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/backend/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WORKDIR /home/testnet

# Install PNPM
RUN corepack enable
RUN corepack prepare pnpm@8.8.0 --activate
RUN corepack prepare pnpm@8.9.0 --activate

# Copy lockfile, NVM and NPM configuration to the working directory
COPY pnpm-lock.yaml .nvmrc .npmrc ./
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/backend/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:18-alpine AS base
WORKDIR /testnet

RUN corepack enable
RUN corepack prepare pnpm@8.8.0 --activate
RUN corepack prepare pnpm@8.9.0 --activate
RUN apk add --no-cache \
libc6-compat \
python3 \
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/frontend/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update && \

# Install PNPM
RUN corepack enable
RUN corepack prepare pnpm@8.8.0 --activate
RUN corepack prepare pnpm@8.9.0 --activate

# Copy lockfile, NVM and NPM configuration to the working directory
COPY pnpm-lock.yaml .nvmrc .npmrc ./
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/frontend/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:18-alpine AS base
WORKDIR /testnet

RUN corepack enable
RUN corepack prepare pnpm@8.8.0 --activate
RUN corepack prepare pnpm@8.9.0 --activate

RUN apk add --no-cache \
libc6-compat \
Expand Down

0 comments on commit df64dd2

Please sign in to comment.