FROM ubuntu:22.04 WORKDIR /app RUN apt-get update \ && apt-get install -y --no-install-recommends curl ca-certificates \ && rm -rf /var/lib/apt/lists/* COPY test.sh . CMD ["bash","test.sh"]