Skip to content

Commit 57d552f

Browse files
authored
Merge pull request #15513 from soohoonchoi/RAD-1354
Update Dockerfile and README for Chapel Release 1.22.0: Release Branch Only
2 parents c1c1cc8 + e4a8487 commit 57d552f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Diff for: util/dockerfiles/Dockerfile

+2-2
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.22.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/chapel-$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

Diff for: util/dockerfiles/README.md

+5-5
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.22.0`, `latest` (_1.22.0/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.22/util/dockerfiles/Dockerfile/)
15+
* [`1.21.0` (_1.21.0/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.21/util/dockerfiles/1.21.0/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.22.0`, `latest` (_1.22.0/gasnet/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.22/util/dockerfiles/gasnet/Dockerfile/)
22+
* [`1.21.0` (_1.21.0/gasnet/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.21/util/dockerfiles/1.21.0/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.21](https://chapel-lang.org/docs/1.21/).
7070

7171
# License
7272

0 commit comments

Comments
 (0)