Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ccl: 1.12.1 -> 1.13 #19

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ccl/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM debian:11
FROM debian:12

LABEL org.opencontainers.image.source=https://github.com/coalton-lang/base-images
LABEL org.opencontainers.image.description="CCL base image for Coalton CI"
LABEL org.opencontainers.image.licenses=MIT

ARG CCL_VERSION=1.12.1
ARG CCL_VERSION=1.13

# Install dependencies
ARG DEBIAN_FRONTEND=noninteractive
Expand All @@ -19,7 +19,7 @@ WORKDIR /src
# Download and install ccl
RUN curl -L -o ccl-binary.tar.gz https://github.com/Clozure/ccl/releases/download/v${CCL_VERSION}/ccl-${CCL_VERSION}-linuxx86.tar.gz \
&& tar xf ccl-binary.tar.gz -C /usr/local/src \
&& rm ccl-binary.tar.gz
&& rm ccl-binary.tar.gz

ENV PATH=/usr/local/src/ccl/scripts:${PATH}

Expand Down
Loading