Skip to content

Commit

Permalink
Fix curl
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Ainsworth committed Jul 27, 2023
1 parent a456747 commit 37e3851
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion service-admin/docker/web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN chown -R nginx:nginx /var/cache/nginx && \

# Add Confd to configure nginx on start
ENV CONFD_VERSION="0.16.0"
RUN curl --silent --output /usr/local/bin/confd "https://github.com/kelseyhightower/confd/releases/download/v${CONFD_VERSION}/confd-${CONFD_VERSION}-linux-amd64" && \
RUN curl --location --silent --output /usr/local/bin/confd "https://github.com/kelseyhightower/confd/releases/download/v${CONFD_VERSION}/confd-${CONFD_VERSION}-linux-amd64" && \
chown -R nginx:nginx /usr/local/bin/confd && \
chmod +x /usr/local/bin/confd

Expand Down
2 changes: 1 addition & 1 deletion service-api/docker/web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN chown -R nginx:nginx /var/cache/nginx && \

# Add Confd to configure nginx on start
ENV CONFD_VERSION="0.16.0"
RUN curl --silent --output /usr/local/bin/confd "https://github.com/kelseyhightower/confd/releases/download/v${CONFD_VERSION}/confd-${CONFD_VERSION}-linux-amd64" && \
RUN curl --location --silent --output /usr/local/bin/confd "https://github.com/kelseyhightower/confd/releases/download/v${CONFD_VERSION}/confd-${CONFD_VERSION}-linux-amd64" && \
chown -R nginx:nginx /usr/local/bin/confd && \
chmod +x /usr/local/bin/confd

Expand Down
2 changes: 1 addition & 1 deletion service-front/docker/web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN chown -R nginx:nginx /var/cache/nginx && \

# Add Confd to configure nginx on start
ENV CONFD_VERSION="0.16.0"
RUN curl --silent --output /usr/local/bin/confd "https://github.com/kelseyhightower/confd/releases/download/v${CONFD_VERSION}/confd-${CONFD_VERSION}-linux-amd64" && \
RUN curl --location --silent --output /usr/local/bin/confd "https://github.com/kelseyhightower/confd/releases/download/v${CONFD_VERSION}/confd-${CONFD_VERSION}-linux-amd64" && \
chown -R nginx:nginx /usr/local/bin/confd && \
chmod +x /usr/local/bin/confd

Expand Down

0 comments on commit 37e3851

Please sign in to comment.