Skip to content

Commit

Permalink
Dockerfile: remove unnecessary yq and add wget
Browse files Browse the repository at this point in the history
This commit:

* Removes yq from the Dockerfile
* Adds wget to implement some health checks.
  • Loading branch information
msune committed Jun 24, 2024
1 parent f023b9e commit 3074d3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ FROM nginx:stable
COPY src/ /usr/share/nginx/html/datahangar
COPY conf/datahangar.conf /etc/nginx/conf.d/default.conf

RUN apt-get update && apt-get install -y yq && apt-get -y clean && \
RUN apt-get update && apt-get install -y wget && apt-get -y clean && \
rm -rf /var/lib/apt/lists/*
RUN chown nginx:nginx /usr/share/nginx/html/datahangar -R

0 comments on commit 3074d3a

Please sign in to comment.