Add cacerts to multitenant-engine Docker image (#1416)

<!-- The PR description should answer 2 important questions: -->

### What

Did not add `cacerts` to `multitenant-engine` as it already worked
before we added said package. However, in retrospect, I believe we were
still building `multitenant-engine` with a `Dockerfile` before and so
getting `cacerts` from `apt install` or something. Anyhow, this
rectifies said omission.

V3_GIT_ORIGIN_REV_ID: 7fc5dc37a8847d1ad1990712c14a3234a61754d1
This commit is contained in:
Daniel Harvey 2024-12-04 10:29:00 +00:00 committed by hasura-bot
parent f582e8e8c5
commit d7fbb446cd

View File

@ -64,7 +64,7 @@
# for adding extra packages inside the Docker container
dockerExtraContents = {
"engine" = [ pkgs.cacert ]; # so local dev can use SSH
"multitenant-engine" = [ pkgs.bash pkgs.coreutils ]; # to run sleep in a healthcheck, we should remove this soon
"multitenant-engine" = [ pkgs.cacert pkgs.bash pkgs.coreutils ]; # to run sleep in a healthcheck, we should remove this soon
"artifact-server" = [ pkgs.curl pkgs.bash ]; # to run healthcheck, we should remove this soon
};
in