# Dockerfile for generalized-arrays # # Instructions: # # docker build -f Dockerfile -t registry.gitlab.com/thatgeoguy/chicken-generalized-arrays:latest . # docker push registry.gitlab.com/thatgeoguy/chicken-generalized-arrays:latest # docker build -f Dockerfile -t registry.gitlab.com/thatgeoguy/chicken-generalized-arrays:VERSION . # docker push registry.gitlab.com/thatgeoguy/chicken-generalized-arrays:VERSION FROM alpine:latest AS builder RUN set -eux; \ # Install chicken apk add chicken; \ # # Install beaker (chicken-clean, chicken-lint) chicken-install beaker; \ # # Dependencies for arrays chicken-install \ r7rs \ srfi-48 \ srfi-128 \ srfi-133 \ srfi-160 \ check-errors \ transducers:0.5.1; \ # # Test dependencies for arrays chicken-install test; LABEL org.opencontainers.image.authors="Jeremy Steward " LABEL org.opencontainers.image.version="0.1.2" LABEL org.opencontainers.image.licenses="BSD-3" LABEL org.opencontainers.image.title="generalized-arrays" LABEL org.opencontainers.image.description="Docker image for generalized-arrays project" CMD ["sh"]