Skip to content

Commit

Permalink
Upgrade to postgres 16
Browse files Browse the repository at this point in the history
Follow notes on 7775134 to dump/load
  • Loading branch information
Earlopain committed Dec 11, 2023
1 parent e568f6e commit e4f2b52
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

services:
postgres:
image: postgres:15-alpine
image: postgres:16-alpine
env:
POSTGRES_USER: reverser
POSTGRES_DB: reverser_test
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ruby:3.2.2-alpine3.18 as ruby-builder
FROM ruby:3.2.2-alpine3.19 as ruby-builder

RUN apk --no-cache add build-base postgresql15-dev
RUN apk --no-cache add build-base postgresql16-dev

COPY Gemfile Gemfile.lock ./
RUN gem i foreman && bundle install \
Expand All @@ -13,17 +13,17 @@ RUN if [[ $COMPOSE_PROFILES == *"solargraph"* ]]; then \
bundle exec yard gems; \
fi

FROM node:18-alpine3.18 as node-downloader
FROM node:20-alpine3.19 as node-downloader

RUN npm install [email protected] -g

FROM ruby:3.2.2-alpine3.18
FROM ruby:3.2.2-alpine3.19

WORKDIR /app

RUN apk --no-cache add \
tzdata git \
postgresql15-client \
postgresql16-client \
vips ffmpeg

RUN git config --global --add safe.directory /app
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ services:
- solargraph

postgres:
image: postgres:15.5-alpine
image: postgres:16.1-alpine3.19
environment:
- POSTGRES_USER=reverser
- POSTGRES_DB=reverser_development
Expand Down
Binary file modified public/icons.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e4f2b52

Please sign in to comment.