Skip to content

Commit 7a31fe8

Browse files
author
Soohhoon Choi
committed
Update Dockerfile and README for Chapel Release 1.21.0: Release Branch Only
Updated Docker file and REAME file to be consistent with the previous releases. Updated version to 1.21.0 and kept references to current and 1 previous release.
1 parent b15fbed commit 7a31fe8

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

util/dockerfiles/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2121
git \
2222
&& rm -rf /var/lib/apt/lists/*
2323

24-
ENV CHPL_VERSION master
24+
ENV CHPL_VERSION 1.21.0
2525
ENV CHPL_HOME /opt/chapel/$CHPL_VERSION
2626
ENV CHPL_GMP system
2727

2828
RUN mkdir -p /opt/chapel \
29-
&& wget -q -O - https://github.com/chapel-lang/chapel/archive/$CHPL_VERSION.tar.gz | tar -xzC /opt/chapel --transform 's/chapel-//' \
29+
&& wget -q -O - https://github.com/chapel-lang/chapel/releases/download/$CHPL_VERSION/chpel-$CHPL_VERSION.tar.gz | tar -xzC /opt/chapel --transform 's/chapel-//' \
3030
&& make -C $CHPL_HOME \
3131
&& make -C $CHPL_HOME chpldoc test-venv mason \
3232
&& make -C $CHPL_HOME cleanall

util/dockerfiles/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111

1212
## `chapel/chapel:<version>`
1313
Supported Chapel versions:
14-
* [`1.20.0`, `latest` (_1.20.0/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.20/util/dockerfiles/Dockerfile/)
15-
* [`1.19.0` (_1.19.0/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.19/util/dockerfiles/1.19.0/Dockerfile/)
14+
* [`1.21.0`, `latest` (_1.21.0/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.21/util/dockerfiles/Dockerfile/)
15+
* [`1.20.0` (_1.20.0/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.20/util/dockerfiles/Dockerfile/)
1616

1717
This is the core image for Chapel. It provides the complete Chapel compiler and runtime. It can be used to compile and run Chapel programs inside the Docker container. On 64-bit Linux hosts, the compiled Chapel program binary can sometimes be executed outside the container (your mileage may vary). Other Chapel-based Docker images can be created from this image.
1818

1919
## [`chapel/chapel-gasnet:<version>`](https://hub.docker.com/r/chapel/chapel-gasnet/)
2020

21-
* [`1.20.0`, `latest` (_1.20.0/gasnet/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.20/util/dockerfiles/gasnet/Dockerfile/)
22-
* [`1.19.0` (_1.19.0/gasnet/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.19/util/dockerfiles/1.19.0/gasnet/Dockerfile/)
21+
* [`1.21.0`, `latest` (_1.21.0/gasnet/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.21/util/dockerfiles/gasnet/Dockerfile/)
22+
* [`1.20.0` (_1.20.0/gasnet/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.20/util/dockerfiles/gasnet/Dockerfile/)
2323

2424
The Chapel core image (above), rebuilt with `CHPL_COMM=gasnet` and `GASNET_SPAWNFN=L`. Simulates a multilocale Chapel platform within the Docker container.
2525

@@ -66,7 +66,7 @@ Hello, world!
6666
# Documentation
6767

6868
Chapel's documentation is [available online](https://chapel-lang.org/docs/).
69-
Documentation for a specific release is also available: [1.19](https://chapel-lang.org/docs/1.19/).
69+
Documentation for a specific release is also available: [1.20](https://chapel-lang.org/docs/1.20/).
7070

7171
# License
7272

0 commit comments

Comments
 (0)