error "/lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found"
Here is My Dockerfile: FROM ubuntu:20.04 RUN apt-get update && apt-get upgrade -y RUN apt-get install libssl-dev RUN apt-get install -y -q build-essential curl RUN curl https://sh.rustup.rs -sSf | sh -s -- -y ENV PATH="/root/.cargo/bin:${PATH}" WORKDIR /command-agent COPY . /command-agent RUN cargo build --release COPY /command-agent/target/release/c