Skip to content

Not work in docker container #316

Open
@vhar

Description

@vhar

Sorry, I can't reopen the #315 issue.

Unfortunately, nothing helped.

  1. If run the application
go run ./main.go -tags go_tarantool_ssl_disable 
  • the same errors.
  1. 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/*
  1. 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"

Metadata

Metadata

Assignees

No one assigned

    Labels

    1spquestionFurther information is requestedteamE

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions