Felipe Santos
Felipe Santos
This is especially important [since Docker Hub has imposed pull rate limits](https://www.docker.com/blog/scaling-docker-to-serve-millions-more-developers-network-egress/). This way we could also use the `deno` images with: ```sh-session $ docker run ghcr.io/denoland/deno ``` Reference: https://github.com/docker/build-push-action/blob/master/docs/advanced/push-multi-registries.md
And it would be nice if it could be automatically updated as well during CI: https://github.com/peter-evans/dockerhub-description But that means, currently, that it would require to deactivate 2FA on Docker Hub.
Probably the `DENO_INSTALL_ROOT` will need to be changed to a folder where the non-root user has permission to write. The `deno` binary could be installed to `$DENO_INSTALL_ROOT/bin` instead and this...
Inspired by https://www.jenkins.io/blog/2021/08/17/docker-images-use-jdk-11-by-default/#:~:text=Docker%20tag%20updates%20stopped
Such as: ```console denoland/deno:v2 denoland/deno:v2.1 denoland/deno:alpine-v2 denoland/deno:alpine-v2.1 ```
By leveraging multi-staged builds, we can have a stage with all the files and then a single `COPY` statement at the end. Also, the `ENV` statement can be combined in...
https://github.com/docker/build-push-action/blob/master/docs/advanced/dockerhub-desc.md
These labels provides a standardized way of retrieving useful information for different images. They are explained at: https://github.com/opencontainers/image-spec/blob/main/annotations.md The easiest way to adopt it is to use the [Docker Metadata...
This discussion started on Discord at [this message](https://discord.com/channels/684898665143206084/684898665151594506/761377272946229249). It would be very cool if `deno.land/x` could support resolving a major release, just how it supports resolving the latest version. The...
It would be cool to bundle the source code, so it can be optimized a bit. However, I stumbled upon a problem, which is that the Electron Forge Webpack plugin...