W:无法获取http://httpredir.debian.org/debian/dists/jessie-updates/main/binary-amd64/Packages 404 Not Found

问题描述 投票:6回答:1

[我的bitbucket-pipeline的相关部分看起来像这样:

  - step:
      image: python:3.5.1
      name: upload to s3
      script:
        - export S3_BUCKET="elasticbeanstalk-us-east-1-122232355432"
        - export VERSION_LABEL=$(cat VERSION_LABEL)
        - apt-get update # required to install zip
        - apt-get install -y zip # required for packaging up the application
        - pip install boto3==1.3.0 # required for upload_to_s3.py
        - zip --exclude=*.git* -r /tmp/artifact.zip . # package up the application for deployment
        - python upload_to_s3.py # run the deployment script

但是当我在Bitbucket中运行它时,我收到以下错误:

+ apt-get update
Get:1 http://security.debian.org jessie/updates InRelease [44.9 kB]
Ign http://httpredir.debian.org jessie InRelease
Ign http://httpredir.debian.org jessie-updates InRelease
Get:2 http://httpredir.debian.org jessie Release.gpg [2420 B]
Ign http://httpredir.debian.org jessie-updates Release.gpg
Get:3 http://httpredir.debian.org jessie Release [148 kB]
Ign http://httpredir.debian.org jessie-updates Release
Err http://httpredir.debian.org jessie-updates/main amd64 Packages

Err http://httpredir.debian.org jessie-updates/main amd64 Packages

Err http://httpredir.debian.org jessie-updates/main amd64 Packages

Err http://httpredir.debian.org jessie-updates/main amd64 Packages

Err http://httpredir.debian.org jessie-updates/main amd64 Packages
  404  Not Found
Get:4 http://security.debian.org jessie/updates/main amd64 Packages [824 kB]
Get:5 http://httpredir.debian.org jessie/main amd64 Packages [9098 kB]
Fetched 10.1 MB in 7s (1394 kB/s)
W: Failed to fetch http://httpredir.debian.org/debian/dists/jessie-updates/main/binary-amd64/Packages  404  Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.

看来我正在使用的图像不再是好的,也许吧?我该如何解决这个问题,或者至少找到另一个包含我需要的“图像”?我最初从Bitbucket文档示例中复制了这个管道,所以我不知道如何使用有效的东西来查找和替换图像。

另外,有没有办法让我在本地测试,所以每次我想测试时都不需要提交/推送?

debian bitbucket apt-get bitbucket-pipelines debian-jessie
1个回答
8
投票

我今天遇到了同样的问题

通过从python:3.5.1到python:3.5.7或python:3.7.2更新docker镜像版本来解决

参考:https://community.atlassian.com/t5/Bitbucket-Pipelines-articles/Bitbucket-Pipelines-Apt-get-update-returning-404/ba-p/1042290#M54

© www.soinside.com 2019 - 2024. All rights reserved.