php-alpine icon indicating copy to clipboard operation
php-alpine copied to clipboard

7.3.18?

Open bitsofinfo opened this issue 3 years ago • 9 comments

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?

bitsofinfo avatar Jul 16 '20 13:07 bitsofinfo

currently release is on 7.3.26

hernandev avatar Jan 10 '21 16:01 hernandev

What happened to 7.3.18-r0? Was it pulled?

bitsofinfo avatar Jan 10 '21 16:01 bitsofinfo

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

hernandev avatar Jan 10 '21 19:01 hernandev

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 avatar Jan 10 '21 19:01 hernandev

I could find here is 7.3.21

hernandev avatar Jan 10 '21 19:01 hernandev

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

hernandev avatar Jan 10 '21 20:01 hernandev

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.

bitsofinfo avatar Jan 11 '21 13:01 bitsofinfo

It's probably not build then right?

hernandev avatar Jan 12 '21 17:01 hernandev

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 \

bitsofinfo avatar Jan 12 '21 19:01 bitsofinfo