1

在我的容器上(来自 php:7.0-apache-stretch)

apt update
apt install php7.0-sybase

结果 :

E: Package 'php7.0-sybase' has no installation candidate

文件 /etc/apt/sources.list :

deb http://deb.debian.org/debian stretch main
deb http://security.debian.org/debian-security stretch/updates main
deb http://deb.debian.org/debian stretch-updates main

如何安装这个包?

谢谢

4

1 回答 1

0

这个 git 问题帮助了我:https ://github.com/docker-library/php/issues/434#issuecomment-301723240

这是我在 php:5.6-apache 上工作的 Dockerfile

FROM php:5.6-apache

RUN apt-get update && apt-get install -y freetds-dev \
    && docker-php-ext-configure sybase_ct --with-sybase-ct=/usr \
    && docker-php-ext-install sybase_ct

COPY . /var/www/html/
于 2022-03-04T13:45:07.477 回答