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