Skip to content

Commit

Permalink
fix(deps): Upgrade relevant dockerfile images (#5121)
Browse files Browse the repository at this point in the history
  • Loading branch information
dubwub authored Nov 11, 2024
1 parent 4a3dd16 commit 6f18504
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion generators/csharp/model/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine3.18 AS node
FROM node:20.18-alpine3.20 AS node
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine3.18

RUN apk --no-cache add bash curl git zip && git config --global user.name "fern" && git config --global user.email "hey@buildwithfern.com"
Expand Down
2 changes: 1 addition & 1 deletion generators/csharp/sdk/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine3.18 AS node
FROM node:20.18-alpine3.20 AS node
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine3.18

RUN apk --no-cache add bash curl git zip && git config --global user.name "fern" && git config --global user.email "hey@buildwithfern.com"
Expand Down
2 changes: 1 addition & 1 deletion generators/go/fiber/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19-alpine3.17
FROM golang:1.22.7-alpine3.19

WORKDIR /workspace

Expand Down
2 changes: 1 addition & 1 deletion generators/go/model/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19-alpine3.17
FROM golang:1.22.7-alpine3.19

WORKDIR /workspace

Expand Down
2 changes: 1 addition & 1 deletion generators/go/sdk/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19-alpine3.17
FROM golang:1.22.7-alpine3.19

WORKDIR /workspace

Expand Down
2 changes: 1 addition & 1 deletion generators/openapi/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM node:18.1.0-alpine
FROM node:20.18-alpine3.20
COPY dist /dist
ENTRYPOINT ["node", "/dist/cli.cjs", "openapi"]
2 changes: 1 addition & 1 deletion generators/php/model/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine3.18 AS node
FROM node:20.18-alpine3.20 AS node
FROM composer:2.7.9

RUN apk --no-cache add bash curl git zip && git config --global user.name "fern" && git config --global user.email "hey@buildwithfern.com"
Expand Down
2 changes: 1 addition & 1 deletion generators/php/sdk/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine3.18 AS node
FROM node:20.18-alpine3.20 AS node
FROM composer:2.7.9

RUN apk --no-cache add bash curl git zip && git config --global user.name "fern" && git config --global user.email "hey@buildwithfern.com"
Expand Down
2 changes: 1 addition & 1 deletion generators/typescript/express/cli/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.1.0-alpine
FROM node:20.18-alpine3.20

RUN apk --no-cache add git zip \
&& git config --global user.name "fern" \
Expand Down
2 changes: 1 addition & 1 deletion generators/typescript/sdk/cli/browser-docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.1.0-alpine
FROM node:20.18-alpine3.20

RUN apk --no-cache add git zip \
&& git config --global user.name "fern" \
Expand Down
2 changes: 1 addition & 1 deletion generators/typescript/sdk/cli/node-docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.1.0-alpine
FROM node:20.18-alpine3.20

RUN apk --no-cache add git zip \
&& git config --global user.name "fern" \
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM alpine:3.14
FROM alpine:3.14.9
COPY basic-writer.sh /
ENTRYPOINT ["/bin/sh", "/basic-writer.sh"]
2 changes: 1 addition & 1 deletion packages/generators/docker/Dockerfile.base
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.1.0-alpine
FROM node:20.18-alpine3.20

RUN apk --no-cache add git zip && git config --global user.name "fern" && git config --global user.email "hey@buildwithfern.com"

Expand Down

0 comments on commit 6f18504

Please sign in to comment.