Skip to content

Commit

Permalink
fix: missing zip in Docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
alecthomas committed Oct 13, 2023
1 parent 0f74f98 commit 7a4b748
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Dockerfile.controller
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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/

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.runner
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 7a4b748

Please sign in to comment.