1077002957aa20969fc78414e52fb8df8215301c
jcasper
  Fri Jun 27 12:34:37 2025 -0700
Making strict beta needs to make beta (for the build).  Also, changes to
support the use of libcurl in the utils build, since now that's linked in.  refs #35988

diff --git src/utils/qa/weeklybld/userApps.dockerfile src/utils/qa/weeklybld/userApps.dockerfile
index d9df0194349..7efdf495555 100644
--- src/utils/qa/weeklybld/userApps.dockerfile
+++ src/utils/qa/weeklybld/userApps.dockerfile
@@ -1,36 +1,37 @@
 ##
 # docker specification for image to build user apps
 ##
 
 FROM ubuntu:22.04
 
 ENV DEBIAN_FRONTEND=noninteractive
 
 RUN apt-get update && apt-get install -y \
     build-essential \
     gcc \
     make \
     git \
     rsync \
     file \
     libtree \
     libc-bin \
     libc6-dev \
     net-tools \
     libpng-dev \
     libssl-dev \
     libbz2-dev \
     libmysqlclient-dev \
     uuid-dev \
+    libcurl4-openssl-dev \
     && apt-get clean && rm -rf /var/lib/apt/lists/*
 
 # Set umask for both bash and commands from docker run
 RUN echo 'umask 0002' >> /etc/profile && \
     echo '#!/bin/bash' > /entrypoint.sh && \
     echo 'umask 0002' >> /entrypoint.sh && \
     echo 'exec "$@"' >> /entrypoint.sh && \
     chmod +x /entrypoint.sh
 ENTRYPOINT ["/entrypoint.sh"]
 
 WORKDIR /home