Skip to content

Commit

Permalink
Update non-Go deps (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo committed Jun 1, 2023
1 parent ca02ffa commit 35278d7
Show file tree
Hide file tree
Showing 13 changed files with 115 additions and 945 deletions.
2 changes: 1 addition & 1 deletion examples/appengineflex/node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Note: if you switch to a slim base image, like an alpine-based image, you
# will need to add the ca-certificates package for Berglas to work.
FROM node:10
FROM node:16

ENV NODE_ENV=production
WORKDIR /usr/src/app
Expand Down
490 changes: 38 additions & 452 deletions examples/appengineflex/node/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/appengineflex/python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Note: if you switch to a slim base image, like an alpine-based image, you
# will need to add the ca-certificates package for Berglas to work.
FROM python:3.7
FROM python:3.11

ENV APP_ENV=production \
PATH="/home/appuser/.local/bin:${PATH}" \
Expand Down
4 changes: 2 additions & 2 deletions examples/appengineflex/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Flask==1.0
gunicorn==19.9
Flask==2.3
gunicorn==20.1
2 changes: 1 addition & 1 deletion examples/appengineflex/ruby/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Note: if you switch to a slim base image, like an alpine-based image, you
# will need to add the ca-certificates package for Berglas to work.
FROM ruby:2.6
FROM ruby:3.2

ENV APP_ENV=production

Expand Down
4 changes: 2 additions & 2 deletions examples/appengineflex/ruby/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@

source 'https://rubygems.org'

gem 'puma', '~> 5.6'
gem 'sinatra', '~> 2.2'
gem 'puma', '~> 6.3'
gem 'sinatra', '~> 3.0'
27 changes: 13 additions & 14 deletions examples/appengineflex/ruby/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
GEM
remote: https://rubygems.org/
specs:
mustermann (2.0.2)
mustermann (3.0.0)
ruby2_keywords (~> 0.0.1)
nio4r (2.5.8)
puma (5.6.5)
nio4r (2.5.9)
puma (6.3.0)
nio4r (~> 2.0)
rack (2.2.6.3)
rack-protection (2.2.4)
rack (2.2.7)
rack-protection (3.0.6)
rack
ruby2_keywords (0.0.5)
sinatra (2.2.4)
mustermann (~> 2.0)
rack (~> 2.2)
rack-protection (= 2.2.4)
sinatra (3.0.6)
mustermann (~> 3.0)
rack (~> 2.2, >= 2.2.4)
rack-protection (= 3.0.6)
tilt (~> 2.0)
tilt (2.1.0)

PLATFORMS
arm64-darwin-21
x86_64-linux
arm64-darwin-22

DEPENDENCIES
puma (~> 5.6)
sinatra (~> 2.2)
puma (~> 6.3)
sinatra (~> 3.0)

BUNDLED WITH
2.4.7
2.4.10
2 changes: 1 addition & 1 deletion examples/cloudrun/node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Note: if you switch to a slim base image, like an alpine-based image, you
# will need to add the ca-certificates package for Berglas to work.
FROM node:10
FROM node:16

ENV NODE_ENV=production
WORKDIR /usr/src/app
Expand Down

0 comments on commit 35278d7

Please sign in to comment.