From 90a483da2b42bb12d4b5da74f01528cf00b4447d Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 14 Sep 2020 13:28:23 -0400 Subject: [PATCH] Issue #408 - Cleanup and document --- CHANGELOG.md | 2 +- Dockerfile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7be9a0b2..d106624f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,9 @@ Features - Alex Arslan modified the Travis script to add support for FreeBSD continuous integration. - Added additional functions to `(srfi 132)`: `vector-find-median!`, `vector-find-median`, `vector-select!`, `vector-select`, and `vector-separate!`. - Bug Fixes +- Updated the `Dockerfile` to use a non-interactive install. This prevents build problems with the official image on DockerHub. - Improved `(scheme lazy)` to allow `force` and `make-promise` to accept an argument of any type. Improved representation of promises to more precisely differentiate them from other objects. - Add type checking to record type accessor functions. We now raise an error if the passed object is of the wrong record type. - Fix issues with expanding `cond-expand` expressions in libraries. Previously there would be issues with the expansion if the code needed to be within the context of a `begin`. diff --git a/Dockerfile b/Dockerfile index ef38b1f2..43e93da0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,6 @@ from ubuntu:latest MAINTAINER justin.ethier@gmail.com ARG DEBIAN_FRONTEND=noninteractive -# ENV TZ=America/New_York ENV CYCLONE_VERSION v0.20 RUN apt update -y