TaLoS icon indicating copy to clipboard operation
TaLoS copied to clipboard

Dockerbuild will not start

Open florianbecker opened this issue 4 years ago • 1 comments

floh@mysgx:~/intel_sgx/TaLoS$ sudo docker -D run -p 7778:7778 talos /start.sh /start.sh: line 5: 9 Segmentation fault (core dumped) ./install/bin/httpd -X

florianbecker avatar Mar 16 '21 21:03 florianbecker

RUN     apt-get update && \
        apt-get install -y --no-install-recommends \
                gcc \
                avr-libc \
                build-essential \
                libpcre3-dev \
                zlib1g-dev \
                git \
                bison \
                flex \
                libtool \
                git \
                openssh-client \
                libssl-dev \
                wget \
                ca-certificates \
                make \
                patch \
                libapr1-dev \
                libaprutil1-dev \
        && apt-get clean \
        && apt-get autoclean \
        && rm -rf /var/lib/apt/lists/*

Hi @florianbecker, by adding libssl-dev to the install lists makes it work. I suppose, at first openssh-client would have auto-installed libssl-dev.

kbamponsem avatar Aug 24 '22 14:08 kbamponsem