Commit Graph

971 Commits

Author SHA1 Message Date
yosifkit f6711eebe5
Merge pull request #640 from infosiftr/apply-fixes
Fix a few edge cases in "apply-templates.sh"
2023-06-02 10:23:29 -07:00
Tianon Gravi 9376ffb2a2 Fix a few edge cases in "apply-templates.sh"
When a version doesn't exist but needs to, we need to actually create the directory.

It also gives us a cleaner build (especially in the face of leftover files) if we purge the directory beforehand so that we know the end result is "canonical".
2023-06-02 10:04:34 -07:00
Docker Library Bot 2466fb116a Update 3.12-rc to 3.12.0-rc.4 2023-05-30 04:05:27 -07:00
Docker Library Bot 51796e9b65 Update 3.11 to 3.11.17 2023-05-29 16:05:18 -07:00
Docker Library Bot 8efc286a3b Update 3.10 to 3.10.23 2023-05-24 04:05:11 -07:00
Docker Library Bot d4a5dd93da Update 3.12-rc to 3.12.0-rc.3 2023-05-20 04:05:24 -07:00
Tianon Gravi f6e28c03d1 Update README architectures 2023-05-15 07:47:28 -07:00
Docker Library Bot c38ceb4d79 Update 3.11 to 3.11.16 2023-05-13 10:05:18 -07:00
Docker Library Bot c0b2f923c9 Update 3.12-rc to 3.12.0-rc.2 2023-05-13 04:05:24 -07:00
Tianon Gravi a7f33b79f2
Merge pull request #634 from J0WI/alpine-3.18
Alpine 3.18
2023-05-10 22:15:31 +00:00
J0WI 559818693c Alpine 3.18 2023-05-10 11:53:35 +02:00
Docker Library Bot aabb3c5c75 Update 3.9 to otp 25.3.2 2023-05-05 10:51:43 -07:00
Docker Library Bot 6445a8d1b1 Update 3.12-rc to otp 25.3.2 2023-05-05 10:39:59 -07:00
Docker Library Bot 8de237303d Update 3.11 to otp 25.3.2 2023-05-05 10:28:48 -07:00
Docker Library Bot 78a7915ab3 Update 3.10 to otp 25.3.2 2023-05-05 10:05:11 -07:00
Docker Library Bot e667276a6f Update 3.11 to 3.11.15 2023-04-29 10:16:35 -07:00
Docker Library Bot 49dac61352 Update 3.10 to 3.10.22 2023-04-29 10:05:10 -07:00
Docker Library Bot f87b6cbcbe Update 3.10 to 3.10.21 2023-04-27 16:54:05 -07:00
Docker Library Bot 3ea9ce9d82 Update 3.11 to 3.11.14 2023-04-27 15:17:10 -07:00
Docker Library Bot c5154e95d3 Update 3.9 to otp 25.3.1 2023-04-27 04:46:42 -07:00
Docker Library Bot 3ba713dad1 Update 3.12-rc to otp 25.3.1 2023-04-27 04:36:32 -07:00
Docker Library Bot acf81d56af Update 3.11 to otp 25.3.1 2023-04-27 04:25:57 -07:00
Docker Library Bot e83ba26490 Update 3.10 to otp 25.3.1 2023-04-27 04:05:11 -07:00
Docker Library Bot 33dceee162 Update 3.12-rc to 3.12.0-rc.1 2023-04-26 10:05:27 -07:00
Docker Library Bot fb2d010b5b Update 3.12-rc to 3.12.0-beta.8 2023-04-21 22:05:24 -07:00
Docker Library Bot 6bce1f24ef Update 3.12-rc to 3.12.0-beta.6 2023-04-05 15:44:36 -07:00
Docker Library Bot 954b05e8e8 Update 3.12-rc to 3.12.0-beta.5 2023-04-02 04:05:24 -07:00
Docker Library Bot 95fd3ddf1c Update 3.11 to 3.11.13 2023-03-31 16:05:17 -07:00
Docker Library Bot 909aa8746f Update 3.11 to 3.11.12 2023-03-30 22:05:18 -07:00
Docker Library Bot 6a960c02c9 Update 3.12-rc to 3.12.0-beta.3 2023-03-26 04:05:23 -07:00
Luke Bakken b41c10aadd
Move `management_agent.disable_metrics_collector` setting to a number… (#626)
* Move `management_agent.disable_metrics_collector` setting to a numbered config file

Fixes #625

Discussed in #624

* Use a conf.d directory in this repo

* Combine into one `COPY` statement
2023-03-24 11:45:07 -07:00
Docker Library Bot 68048c872d Update 3.10 to 3.10.20 2023-03-22 16:05:11 -07:00
Docker Library Bot 7e15b7d873 Update 3.11 to 3.11.11 2023-03-20 16:05:20 -07:00
Docker Library Bot ca55cfc9bc Update 3.12-rc to 3.12.0-beta.2 2023-03-17 04:05:28 -07:00
Luke Bakken fb984f6db4
Merge pull request #620 from infosiftr/1777
Update permissions from 777 to 1777
2023-03-14 07:22:39 -07:00
Tianon Gravi 608d785d09 Update permissions from 777 to 1777
This still supports the "arbitrary user" use case but with slightly tighter permissions on the end result.
2023-03-10 16:07:30 -08:00
Docker Library Bot e28a90517f Update 3.9 to 3.9.29 2023-03-09 16:05:33 -08:00
Tianon Gravi 2624d2040e
Merge pull request #619 from mkuratczyk/enable-builtin-zlib
Explicitly enable builtin zlib
2023-03-08 11:27:27 -08:00
Michal Kuratczyk 92cf3ab710
Explicitly enable builtin zlib
Until now, the `./configure` option attempted to use shared
(system-provided) zlib. However, the image, at least ubuntu
doesn't have `zlib1g-dev` package installed, so OTP falls back
to using builtin zlib. Therefore, this commit shouldn't change the
contents of the image that gets built, but makes it explicit that it
uses zlib version included in OTP (currently 1.2.12).

The alternative would be to install the missing package and actually
use ubuntu-provided zlib version. However, that would be a change in
behaviour and a negative one - there was a significant performance
improvement included in 1.2.12, that we would have lost.
2023-03-08 18:06:33 +01:00
Docker Library Bot beafe44b1e Update 3.9 to otp 25.3 2023-03-08 04:52:41 -08:00
Docker Library Bot 225c6a41fd Update 3.12-rc to otp 25.3 2023-03-08 04:40:05 -08:00
Docker Library Bot bf77e3b50e Update 3.11 to otp 25.3 2023-03-08 04:28:09 -08:00
Docker Library Bot e7cb2c3f0b Update 3.10 to otp 25.3 2023-03-08 04:05:13 -08:00
Tianon Gravi 4572933e96
Merge pull request #618 from infosiftr/3.12
Add 3.12.0-beta.1
2023-03-07 09:55:40 -08:00
Tianon Gravi 1bc76ab8a3 Add 3.12.0-beta.1 2023-03-06 10:47:51 -08:00
Docker Library Bot dde405ff54 Update 3.11 to 3.11.10 2023-03-02 10:05:21 -08:00
Docker Library Bot d780bf9904 Update 3.10 to 3.10.19 2023-03-02 04:05:13 -08:00
Docker Library Bot 96b94da117 Update 3.9 to otp 25.2.3 2023-02-17 04:28:04 -08:00
Docker Library Bot 1f1974a3ed Update 3.11 to otp 25.2.3 2023-02-17 04:19:03 -08:00
Docker Library Bot 0fece9e37e Update 3.10 to otp 25.2.3 2023-02-17 04:05:13 -08:00