Skip to content

Commit d44399d

Browse files
authored
Merge pull request #12630 from soohoonchoi/RAD-956
Update Dockerfiles and README for Chapel Release 1.19.0: Release Branch Only
2 parents 3e46523 + 23ced79 commit d44399d

File tree

3 files changed

+11
-15
lines changed

3 files changed

+11
-15
lines changed

Diff for: util/dockerfiles/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:stretch
1+
FROM debian:9.5
22

33
RUN apt-get update && apt-get install -y --no-install-recommends \
44
wget \
@@ -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.19.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

+7-11
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,15 @@
1111

1212
## `chapel/chapel:<version>`
1313
Supported Chapel versions:
14-
* [`1.17.1`, `latest` (_1.17.1/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.17/util/dockerfiles/Dockerfile/)
15-
* [`1.17.0` (_1.17.0/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.17/util/dockerfiles/1.17.0/Dockerfile/)
16-
* [`1.16.0` (_1.16.0/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/master/util/dockerfiles/1.16.0/Dockerfile/)
17-
* [`1.15.0` (_1.15.0/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/master/util/dockerfiles/1.15.0/Dockerfile/)
14+
* [`1.19.0`, `latest` (_1.19.0/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.19/util/dockerfiles/Dockerfile/)
15+
* [`1.18.0` (_1.18.0/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.18/util/dockerfiles/Dockerfile/)
1816

1917
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.
2018

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

23-
* [`1.17.1`, `latest` (_1.17.1/gasnet/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.17/util/dockerfiles/gasnet/Dockerfile/)
24-
* [`1.17.0` (_1.17.0/gasnet/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.17/util/dockerfiles/1.17.0/gasnet/Dockerfile/)
25-
* [`1.16.0` (_1.16.0/gasnet/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/master/util/dockerfiles/1.16.0/gasnet/Dockerfile/)
26-
* [`1.15.0` (_1.15.0/gasnet/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/master/util/dockerfiles/1.15.0/gasnet/Dockerfile/)
21+
* [`1.19.0`, `latest` (_1.19.0/gasnet/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.19/util/dockerfiles/gasnet/Dockerfile/)
22+
* [`1.18.0` (_1.18.0/gasnet/Dockerfile_)](https://github.com/chapel-lang/chapel/blob/release/1.18/util/dockerfiles/gasnet/Dockerfile/)
2723

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

@@ -70,12 +66,12 @@ Hello, world!
7066
# Documentation
7167

7268
Chapel's documentation is [available online](https://chapel-lang.org/docs/).
73-
Documentation for a specific release is also available: [1.16](https://chapel-lang.org/docs/1.16/), [1.15](https://chapel-lang.org/docs/1.15/).
69+
Documentation for a specific release is also available: [1.18](https://chapel-lang.org/docs/1.18/).
7470

7571
# License
7672

7773
View [license information](https://chapel-lang.org/license.html) for the software contained in this image.
7874

79-
# User Feedback
75+
# For More Information
8076

81-
If you have any questions about or problems with this image, please write to the [Chapel developers mailing list](https://lists.sourceforge.net/lists/listinfo/chapel-developers). To post a message to all the list members, send email to [[email protected]](mailto:[email protected]). You may also be interested in other [Chapel resources for developers](https://chapel-lang.org/developers.html), including the `#chapel-developers` IRC channel on Freenode.
77+
Please visit Chapel's [Home Page](https://chapel-lang.org/)

Diff for: util/dockerfiles/gasnet/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM chapel/chapel-master:latest
1+
FROM chapel/chapel:latest
22

33
ENV CHPL_COMM gasnet
44

0 commit comments

Comments
 (0)