mkbrut 0.9.0 → 0.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dbe2cf6d997397c741d9b27ca86ee986483ee39bf659504c3035d6e61db39305
4
- data.tar.gz: 39e9e0d7bd3b4fd06ff558eeb2d17c35996976e5d30e354196a2a61a99179351
3
+ metadata.gz: 81529015409ff5aa2042f1b2b9512af6982d06df63acdd99f35b6282a6ef8453
4
+ data.tar.gz: e3255f2402f04446cae35a170ab7a44d00550d3043e1f5d0da87e82e0fb1aa1e
5
5
  SHA512:
6
- metadata.gz: 502e73d098c1c4c8e1dfda3faf1333b70815edf8b1a5b56cc0e4f32ea4730ae6127d58aeaa0ddd6f7b8d355335facedbe0f57b7ae6abb166c2c8cfca1ae8db7f
7
- data.tar.gz: 0da67c35c1b15c0c039b4cda01fd3e6ed2a446a273e020b208ec4c8eb68a3b42dcb4ec1f3a9216a19d41550f27b3be6d03a9636d683dc571559f3147cdc9c90c
6
+ metadata.gz: 38158daa3dc047418f629588f70caca2a8af3b2d7bf045598edd847898d3bff2877d5b460238a36275fa237f5ad2e7caa33bb6717fb6016ee62d92480d81b1f0
7
+ data.tar.gz: d6f12fd7e888bb8b5d44587a779a20c91f0dd1fa9205c878ac3ec422cc8908ea12c5dee7c03defdd528dc482157f4e47925aaa966c93061617c2a39b1a1dd61f
@@ -1,3 +1,3 @@
1
1
  module MKBrut
2
- VERSION = "0.9.0"
2
+ VERSION = "0.9.2"
3
3
  end
@@ -38,6 +38,7 @@ RUN apt-get -y clean && \
38
38
  curl \
39
39
  gnupg \
40
40
  lsb-release \
41
+ postgresql-common \
41
42
  rsync \
42
43
  vim
43
44
 
@@ -106,8 +107,7 @@ RUN install -m 0755 -d /etc/apt/keyrings && \
106
107
  #
107
108
  # Also note that the version here should match the version set up in
108
109
  # docker-compose.dx.yml
109
- RUN sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' && \
110
- wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \
110
+ RUN /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y && \
111
111
  apt-get update && \
112
112
  apt-get -y install postgresql-client-16
113
113
 
@@ -44,20 +44,19 @@ RUN apt-get update --quiet --yes && \
44
44
  gnupg \
45
45
  libjemalloc2 \
46
46
  lsb-release \
47
+ postgresql-common \
47
48
  rsync \
48
- wget && \
49
- rm -rf /var/lib/apt/lists /var/cache/apt/archives
49
+ wget
50
50
 
51
51
  # Install the PostgreSQL client. The latest version is not available
52
52
  # from Debian, so we set up our own. This should match what's in Dockerfile.dx
53
53
  # and ideally the version of Postgres used in production.
54
54
  #
55
55
  # Incancation is based on: https://www.postgresql.org/download/linux/debian/
56
- RUN sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' && \
57
- wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \
56
+ RUN /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y && \
58
57
  apt-get update && \
59
58
  apt-get --yes --quiet install postgresql-client-16 && \
60
- rm -rf /var/lib/apt/lists /var/cache/apt/archives
59
+ rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
61
60
 
62
61
  # Set basic env vars for production
63
62
  ENV RACK_ENV="production" \
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mkbrut
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Copeland