gpt4 book ai didi

linux - 尽管确实存在,但在 Alpine Docker 容器中收到 [Not Found] 错误

转载 作者:太空狗 更新时间:2023-10-29 11:12:14 26 4
gpt4 key购买 nike

当运行 alpine docker 容器并尝试构建时,我收到这样的错误消息。

/bin/sh: /etc/init.d/postgresql: not found

这是我的 Dockerfile:

FROM alpine:3.5

MAINTAINER hoge

ENV LANG en_US.utf8

ENV PHX_PORT 4000
ENV PHX_DBNAME hoge_db

COPY release.tar.gz /

RUN echo 'http://dl-3.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories

RUN apk update && apk upgrade && \
apk add --no-cache --virtual .base_deps build-base openssl-dev zlib-dev libxml2-dev wget gnupg ca-certificates && \
apk add --no-cache readline-dev glib-lang libssl1.0 postgresql postgresql-client && \
apk add --update binutils && \
apk add --no-cache sudo && \
apk --purge del .base_deps && \
tar -xzf ./release.tar.gz && \
echo "postgres ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/postgres && \
chmod 600 /etc/sudoers.d/postgres && \
sync && \
/etc/init.d/postgresql setup && \
/etc/init.d/postgresql start && \
readelf -l /etc/init.d/postgresql | grep "program interpreter" && \
psql -U postgres -c "CREATE DATABASE $PHX_DBNAME WITH ENCODING 'UTF8' OWNER=postgres TEMPLATE = template0;"


VOLUME /var/lib/postgresql/data

ENTRYPOINT ["psql", "-U", "postgres"]

EXPOSE 5432

/etc/init.d/postgresql肯定存在。
我确实通过实际进入容器确认了它的存在。
我该如何修改?

最佳答案

您需要将 openrc 添加到您的 apk add 命令列表中。

github issue 上找到了解决方案同样,在检查 /etc/init.d/postgresql 文件并看到 shebang 行引用 openrc

关于linux - 尽管确实存在,但在 Alpine Docker 容器中收到 [Not Found] 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46876608/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com