���� JFIF aewtgwgerwasdasd
Server IP : 147.93.80.58 / Your IP : 216.73.216.75 Web Server : LiteSpeed System : Linux id-dci-web1866.main-hosting.eu 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64 User : u939086737 ( 939086737) PHP Version : 8.2.28 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/root/opt/go/pkg/mod/go.mongodb.org/mongo-driver@v1.14.0/ |
Upload File : |
# Dockerfile for Go Driver local development. # Build libmongocrypt in a separate build stage. FROM ubuntu:20.04 as libmongocrypt RUN apt-get -qq update && \ apt-get -qqy install --no-install-recommends \ git \ ca-certificates \ curl \ build-essential \ libssl-dev \ python COPY etc/install-libmongocrypt.sh /root/install-libmongocrypt.sh RUN cd /root && bash ./install-libmongocrypt.sh # Copy in the files from the libmongocrypt build stage. FROM ubuntu:20.04 # Install common deps. RUN export DEBIAN_FRONTEND=noninteractive && \ export TZ=Etc/UTC && \ apt-get -qq update && \ apt-get -qqy install --reinstall --no-install-recommends \ git \ ca-certificates \ curl \ wget \ sudo \ tzdata \ ca-certificates \ pkg-config \ software-properties-common \ gpg \ apt-utils \ libc6-dev \ gcc \ make && \ sudo update-ca-certificates && \ rm -rf /var/lib/apt/lists/* # Install golang from the golang-backports ppa. RUN export DEBIAN_FRONTEND=noninteractive && \ export TZ=Etc/UTC && \ export LC_ALL=C.UTF-8 && \ sudo -E apt-add-repository "ppa:longsleep/golang-backports" && \ apt-get -qq update && \ apt-get -qqy install --no-install-recommends golang-go && \ rm -rf /var/lib/apt/lists/* COPY ./etc/docker_entry.sh /root/docker_entry.sh COPY --from=libmongocrypt /root/install /root/install ENV DOCKER_RUNNING=true ENTRYPOINT ["/bin/bash", "/root/docker_entry.sh"]