codecasts / php-alpine

PHP APK Repository for Alpine Linux
https://github.com/codecasts/php-alpine
483 stars 58 forks source link

7.3.18? #107

Open bitsofinfo opened 4 years ago

bitsofinfo commented 4 years ago

I'm debugging a DockerFile that has this in it

RUN curl https://dl.bintray.com/php-alpine/key/php-alpine.rsa.pub -o /etc/apk/keys/php-alpine.rsa.pub && \
    echo "@php https://dl.bintray.com/php-alpine/v3.9/php-7.3" >> /etc/apk/repositories && \
    apk add \
        coreutils=8.31-r0 \
        php7-fpm@php=7.3.18-r0 \
        supervisor=4.1.0-r0 \

There are built images with this that were previously able to pull 7.3.18-r0 from this https://bintray.com/php-alpine/v3.9/php-7.3 repo which links back to this project as the maintainer. What happened to 7.3.18-r0? Was it pulled?

hernandev commented 3 years ago

currently release is on 7.3.26

bitsofinfo commented 3 years ago

What happened to 7.3.18-r0? Was it pulled?

hernandev commented 3 years ago

Paths colide so I delete old files, you need this version?

hernandev commented 3 years ago

Nowadays builds are saved as tar.bz2 for future references, this version you mention is not available anymore, maybe, in some docker images, not sure, gonna have to check

hernandev commented 3 years ago

I could find here is 7.3.21

hernandev commented 3 years ago

7.3.18 was never released here, we moved from 7.3.17 to 7.3.21 on scripts, https://github.com/codecasts/php-alpine/commit/28f49889250f205024a06b00b3741f61e2725cb2#diff-86e2be11fe0becbe6b55145d7eaf9f46bf1569dd9c0902b19727b605b9c2cd19

If you really need, I can build locally the way it was with 7.3.18 and send you as tar.bz2, if you need

bitsofinfo commented 3 years ago

keep this open for now thanks. will get circle back to this, but we do have a build that is tied to that published artifact.

hernandev commented 3 years ago

It's probably not build then right?

bitsofinfo commented 3 years ago

I have a production image being used in an application who's dockerfile contains the following and was built successfully in the past:

RUN curl https://dl.bintray.com/php-alpine/key/php-alpine.rsa.pub -o /etc/apk/keys/php-alpine.rsa.pub && \
    echo "@php https://dl.bintray.com/php-alpine/v3.9/php-7.3" >> /etc/apk/repositories && \
    apk add \
        coreutils=8.31-r0 \
        php7-fpm@php=7.3.18-r0 \
        supervisor=4.1.0-r0 \