From 771d0aad356ff167668a6a6af09649d50c62b61c Mon Sep 17 00:00:00 2001 From: Sebastien Dionne Date: Thu, 8 Apr 2021 15:54:58 -0400 Subject: [PATCH] feat(docker): added curl to the image (#663) close #662 Co-authored-by: Sebastien Dionne --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index ed8553998..791057aaa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,12 @@ FROM openjdk:11-jre-slim +# install curl +RUN apt-get update && \ + apt-get install -y \ + curl && \ + rm -rf /var/lib/apt/lists/* && \ + apt-get clean + WORKDIR /app COPY docker / ENV MICRONAUT_CONFIG_FILES=/app/application.yml