Docker-Container无法构建

时间:2020-03-05 16:25:19

标签: docker dockerfile

我尝试启动docker-container,但出现错误:

错误:服务'client'生成失败:命令'/ bin / sh -c apt-get update && apt-get install --yes --no-install-recommends apt-transport-https dirmngr gnupg && mkdir -p /etc/apt/sources.list.d && apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4 && echo $ repository> /etc/apt/sources.list.d/clickhouse.list && apt -get update && env DEBIAN_FRONTEND =非交互式apt-get安装--allow-unauthenticated --yes --no-install-recommends clickhouse-client = $ version clickhouse-common-static = $ version locales tzdata && rm -rf / var / lib / apt / lists / * / var / cache / debconf && apt-get clean'返回非零代码:2

我的dockerfile:

    FROM ubuntu:18.04

ARG repository="deb http://repo.yandex.ru/clickhouse/deb/stable/ main/"
ARG version=19.*

RUN apt-get update \
    && apt-get install --yes --no-install-recommends \
        apt-transport-https \
        dirmngr \
        gnupg \
    && mkdir -p /etc/apt/sources.list.d \
    && apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4 \
    && echo $repository > /etc/apt/sources.list.d/clickhouse.list \
    && apt-get update \
    && env DEBIAN_FRONTEND=noninteractive \
        apt-get install --allow-unauthenticated --yes --no-install-recommends \
            clickhouse-client=$version \
            clickhouse-common-static=$version \
            locales \
            tzdata \
    && rm -rf /var/lib/apt/lists/* /var/cache/debconf \
    && apt-get clean

RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8

ENTRYPOINT ["/usr/bin/clickhouse-client"]

1 个答案:

答案 0 :(得分:0)

我不知道为什么,但是问题出在这里:

apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4.

正在工作:

apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv E0C56BD4
相关问题