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 +4 -4
- data/lib/mkbrut/version.rb +1 -1
- data/templates/Base/Dockerfile.dx +2 -2
- data/templates/segments/Heroku/deploy/Dockerfile +4 -5
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81529015409ff5aa2042f1b2b9512af6982d06df63acdd99f35b6282a6ef8453
|
4
|
+
data.tar.gz: e3255f2402f04446cae35a170ab7a44d00550d3043e1f5d0da87e82e0fb1aa1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38158daa3dc047418f629588f70caca2a8af3b2d7bf045598edd847898d3bff2877d5b460238a36275fa237f5ad2e7caa33bb6717fb6016ee62d92480d81b1f0
|
7
|
+
data.tar.gz: d6f12fd7e888bb8b5d44587a779a20c91f0dd1fa9205c878ac3ec422cc8908ea12c5dee7c03defdd528dc482157f4e47925aaa966c93061617c2a39b1a1dd61f
|
data/lib/mkbrut/version.rb
CHANGED
@@ -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
|
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
|
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" \
|