yosifkit

Results 308 comments of yosifkit

Thanks @fredemmott, we are always excited when an upstream wants to maintain their official image. :+1: Would you like us to hold off on accepting an official image for `HHVM`...

Just so you have a reference to multi-stage build support in Official Images: https://github.com/docker-library/official-images/issues/3383.

Currently it is the best way to communicate to the user about where permanent data is located in the image and ensures that users get better performance by default in...

@xemuliam, what @tianon is saying is that the RethinkDB package is pulled from [Alpine Linux packaging](https://pkgs.alpinelinux.org/packages?name=rethinkdb&branch=v3.8&arch=x86_64) and so any version bumps or other updates will have to go through Alpine's...

Quick note that official images builds do not support multi-stage builds: https://github.com/docker-library/official-images/issues/3383.

❤️This is very clever! What a simple way to break architecture version bumps apart while keeping build cache. 😞Unfortunately, official images' review pipelines do not support variable substitution in `COPY`...

This was "fixed" by the `alpine:edge` snapshot rebuild on 20240606 (https://github.com/docker-library/official-images/pull/16939). The answer is to use a newer `alpine:edge` image (or `apk upgrade -a` before installing new packages in edge).

I can't find any [documentation](https://github.com/rails-sqlserver/tiny_tds/blob/a60500133583777edc439cf905280b738b1b4527/README.md#tinytdsclient-usage) on setting `instance` in tiny_tds (the gem [used by redmine](https://github.com/redmine/redmine/blob/7374912f039344773e7e9257a2bcafc644616ef5/Gemfile#L81-L83) to connect to SQL Server). It *might* be useful for the entrypoint script to allow...

We haven't really updated the repo-info scripts to account for the provenance+SBOM data added during the `docker buildx build --provenance=mode=max --sbom=generator=docker/scout-sbom-indexer:1-doi ...` (which are the items with `unknown` architecture and...

`RUN chown ...` is going to duplicate the file added by `COPY`, so it should use `COPY --chown` instead (https://docs.docker.com/reference/dockerfile/#copy---chown---chmod). It will require a `Builder: buildkit` in the `library/phpmyadmin` file...