From b00ac292c7a68f000530b9f07e38d9f0e538e6af Mon Sep 17 00:00:00 2001 From: Abhishek Pandey Date: Wed, 20 Sep 2023 02:09:15 +0530 Subject: [PATCH] Add a minor fix for make buildimage (#4295) `make buildimage` currently fails with `/bin/sh: 1: unzip: not found`. Adding a command to install unzip. --- #### Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No #### Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [x] :world_map: Documentation - [ ] :robot: Supportability/Tests - [ ] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup #### Issue(s) * # #### Test Plan - [x] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- website/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/Dockerfile b/website/Dockerfile index be2ec6165..6e85f22a0 100644 --- a/website/Dockerfile +++ b/website/Dockerfile @@ -4,7 +4,7 @@ LABEL MAINTAINER="Niraj Tolia" ARG DEBIAN_FRONTEND=noninteractive # NOTE for lines 17,19: update in CI when updating -RUN apt-get -y update && apt-get -y install gpg curl git make ca-certificates gnupg \ +RUN apt-get -y update && apt-get -y install gpg curl git make ca-certificates gnupg unzip \ && mkdir -p /etc/apt/keyrings \ && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \