Skip to content

Commit 763520a

Browse files
committed
Add psmisc for killall which is used during installation
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 9259344 commit 763520a

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121
# - "127.0.0.1:8222:8222"
2222

2323
prometheus:
24-
image: docker.io/prom/prometheus:v3.1.0
24+
image: docker.io/prom/prometheus:v3.7.3
2525
# nobody
2626
user: "65534"
2727
volumes:
@@ -39,7 +39,7 @@ services:
3939
- "127.0.0.1:9090:9090"
4040

4141
gateway:
42-
image: ghcr.io/openfaas/gateway:0.27.12
42+
image: ghcr.io/openfaas/gateway:0.27.13
4343
environment:
4444
- basic_auth=true
4545
- functions_provider_url=http://faasd-provider:8081/

hack/install-edge.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,14 @@ install_required_packages() {
3535
# to get it working in raspberry pi. No such known issues in
3636
# other distros. Hence, adding only to this block.
3737
# reference: https://github.com/openfaas/faasd/pull/237
38-
apt-get update -yq
39-
apt-get install -yq curl runc bridge-utils iptables iptables-persistent
38+
apt-get update -yq && \
39+
apt-get install -yq ---no-install-recommends \
40+
curl \
41+
runc \
42+
bridge-utils \
43+
iptables \
44+
iptables-persistent \
45+
psmisc
4046
elif $(has_dnf); then
4147
dnf install -y \
4248
--allowerasing \

0 commit comments

Comments
 (0)