Open
Description
Sorry, I can't reopen the #315 issue.
Unfortunately, nothing helped.
- If run the application
go run ./main.go -tags go_tarantool_ssl_disable
- the same errors.
- If install opensll to golang:1.20-alpine container - the same errors
Dockerfile
FROM golang:1.20-alpine
WORKDIR "/usr/src/tarantool"
RUN apk add --update openssl && \
rm -rf /var/cache/apk/*
- If build a custom container from ubuntu:latest - the same errors
Dockerfile
FROM ubuntu:latest
WORKDIR "/usr/src"
RUN apt-get update \
&& apt-get -y install \
wget \
tar \
openssl \
ca-certificates \
libssl-dev \
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
RUN update-ca-certificates -v
RUN wget https://go.dev/dl/go1.20.6.linux-amd64.tar.gz \
&& tar -C /opt -xzf go1.20.6.linux-amd64.tar.gz
ENV PATH="$PATH:/opt/go/bin"