Skip to content

Commit

Permalink
feat(docker): added curl to the image (#663)
Browse files Browse the repository at this point in the history
close #662 

Co-authored-by: Sebastien Dionne <Sebastien.Dionne@bidgroup.ca>
  • Loading branch information
survivant and Sebastien Dionne committed Apr 8, 2021
1 parent 594cda9 commit 771d0aa
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 771d0aa

Please sign in to comment.