From 7a4b748ffe3b3a1972fbd15be4c57a886ec7512c Mon Sep 17 00:00:00 2001 From: Alec Thomas Date: Fri, 13 Oct 2023 16:52:50 +1100 Subject: [PATCH] fix: missing zip in Docker container --- Dockerfile.controller | 8 ++++---- Dockerfile.runner | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile.controller b/Dockerfile.controller index 5cbf733f23..74f69c166f 100644 --- a/Dockerfile.controller +++ b/Dockerfile.controller @@ -1,6 +1,6 @@ FROM ubuntu:22.04 AS builder -RUN apt update -RUN apt install -y curl git +RUN apt-get update +RUN apt-get install -y curl git zip # Copy Hermit bin stubs and install all packages. This is done # separately so that Docker will cache the tools correctly. @@ -25,8 +25,8 @@ RUN make build/release/ftl # Finally create the runtime image. FROM ubuntu:22.04 -RUN apt update -RUN apt install -y curl postgresql-client iputils-ping vim +RUN apt-get update +RUN apt-get install -y curl postgresql-client iputils-ping vim WORKDIR /root/ diff --git a/Dockerfile.runner b/Dockerfile.runner index 0c8bb8f61b..a9b15f6d0c 100644 --- a/Dockerfile.runner +++ b/Dockerfile.runner @@ -1,6 +1,6 @@ FROM ubuntu:22.04 AS builder -RUN apt update -RUN apt install -y curl git +RUN apt-get update +RUN apt-get install -y curl git zip # Seed some of the most common tools - this will be cached COPY ./bin /src/bin