# Dockerfile for SRFI-113 # # Instructions: # # docker build -f Dockerfile -t registry.gitlab.com/thatgeoguy/srfi-113:latest . # docker push registry.gitlab.com/thatgeoguy/srfi-113:latest # docker build -f Dockerfile -t registry.gitlab.com/thatgeoguy/srfi-113:VERSION . # docker push registry.gitlab.com/thatgeoguy/srfi-113:VERSION FROM alpine:latest RUN set -eux; \ # Install chicken apk add chicken; \ # # Install beaker (chicken-clean, chicken-lint) chicken-install beaker; \ # # Dependencies for srfi-113 chicken-install r7rs srfi-69 srfi-128; \ # # Test dependencies for srfi-113 chicken-install srfi-13 test; LABEL org.opencontainers.image.authors="Jeremy Steward " LABEL org.opencontainers.image.version="0.1.0" LABEL org.opencontainers.image.licenses="BSD" LABEL org.opencontainers.image.title="SRFI-113" LABEL org.opencontainers.image.description="Docker image for SRFI-113" CMD ["bash"]