docker
docker copied to clipboard
Docker images for various Racket versions
Unless I'm terribly mistaken: - the current repository is what is used to push to https://hub.docker.com/r/racket/racket and - the current repository builds its images on `debian:stable-slim`. However, the Docker Hub...
This isn't an issue, just informational :) I've been playing with Pollen lately and wanted to automate deployments to Netlify. Unfortunately, Netlify doesn't support Racket out of the box. I...
I am getting a fontconfig problem in `plot`: ``` # racket Welcome to Racket v7.1. > (require plot/no-gui) > (plot-file (function (lambda (x) (sin (* 4 x))) -1 1) #:x-min...
Can't support Alpine images yet because of musl libc problems in Racket's core. Alpine images might work once Racket moves to Chez Scheme though.
Docker now supports multi-stage builds to avoid putting build-only intermediate files and executables in the final output image. Might be worth investigating how that can help here?