Ron-Hinton
Ron-Hinton
I tried the following Dockerfile: ``` FROM public.ecr.aws/amazonlinux/amazonlinux:2 COPY cert.pem /etc/pki/ca-trust/source/anchors/cert.pem COPY key.pem /etc/pki/ca-trust/source/anchors/key.pem RUN update-ca-trust extract WORKDIR /app COPY env /app/env COPY tests /app/tests RUN yum install -y k6...
I also used this Dockerfile: ``` FROM amazonlinux:2023 COPY cert.pem /etc/pki/ca-trust/source/anchors/cert.pem COPY key.pem /etc/pki/ca-trust/source/anchors/key.pem RUN update-ca-trust extract WORKDIR /app COPY env /app/env COPY tests /app/tests RUN yum install -y k6...