Skip to content

Commit

Permalink
fix: Enable full functionality curl for ui & orders (#694)
Browse files Browse the repository at this point in the history
  • Loading branch information
guikcd authored Dec 12, 2024
1 parent a4fecb8 commit 2e6ede4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/orders/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ RUN dnf --setopt=install_weak_deps=False install -q -y \
&& \
dnf clean all

# use curl-full to use "telnet://" scheme
# https://docs.aws.amazon.com/linux/al2023/ug/curl-minimal.html
RUN dnf -q -y swap libcurl-minimal libcurl-full \
&& dnf -q -y swap curl-minimal curl-full

ARG aws_opentelemetry_agent_version=1.24.0

ENV APPUSER=appuser
Expand Down
5 changes: 5 additions & 0 deletions src/ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ RUN dnf --setopt=install_weak_deps=False install -q -y \
&& \
dnf clean all

# use curl-full to use "telnet://" scheme
# https://docs.aws.amazon.com/linux/al2023/ug/curl-minimal.html
RUN dnf -q -y swap libcurl-minimal libcurl-full \
&& dnf -q -y swap curl-minimal curl-full

ARG aws_opentelemetry_agent_version=1.24.0

ENV APPUSER=appuser
Expand Down

0 comments on commit 2e6ede4

Please sign in to comment.