Skip to content

Commit 1e8dc6d

Browse files
committed
3.1.2
1 parent 5a58523 commit 1e8dc6d

8 files changed

+16
-13
lines changed

.github/workflows/continuous-integration-workflow.yml

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ jobs:
6969
- '3.0.4'
7070
- '3.1'
7171
- '3.1.1'
72+
- '3.1.2'
7273

7374
steps:
7475
- name: Checkout

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ Copy `example/default.dockerfile` (or `example/app-with-native-dependencies.dock
1616

1717
Edit the `Dockerfile` you copied into your project, changing the first line so that the numbers at the end match the version of Meteor of your project. You can find your project’s Meteor version in your app’s `.meteor/release` file.
1818

19-
For example, if your project is running under Meteor 3.1.1:
19+
For example, if your project is running under Meteor 3.1.2:
2020

2121
```Dockerfile
22-
FROM geoffreybooth/meteor-base:3.1.1
22+
FROM geoffreybooth/meteor-base:3.1.2
2323
```
2424

2525
This version must match an available tag from [geoffreybooth/meteor-base](https://hub.docker.com/r/geoffreybooth/meteor-base/tags).

example/app-with-native-dependencies.dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# The tag here should match the Meteor version of your app, per .meteor/release
2-
FROM geoffreybooth/meteor-base:3.1.1
2+
FROM geoffreybooth/meteor-base:3.1.2
33

44
# Copy app package.json and package-lock.json into container
55
COPY ./app/package*.json $APP_SOURCE_FOLDER/
@@ -12,8 +12,8 @@ COPY ./app $APP_SOURCE_FOLDER/
1212
RUN bash $SCRIPTS_FOLDER/build-meteor-bundle.sh
1313

1414

15-
# Use the specific version of Node expected by your Meteor release, per https://docs.meteor.com/changelog.html; this is expected for Meteor 3.1.1
16-
FROM node:22.13.0-alpine
15+
# Use the specific version of Node expected by your Meteor release, per https://docs.meteor.com/changelog.html; this is expected for Meteor 3.1.2
16+
FROM node:22.13.1-alpine
1717

1818
ENV APP_BUNDLE_FOLDER=/opt/bundle
1919
ENV SCRIPTS_FOLDER=/docker
@@ -36,7 +36,7 @@ RUN bash $SCRIPTS_FOLDER/build-meteor-npm-dependencies.sh --build-from-source
3636

3737
# Start another Docker stage, so that the final image doesn’t contain the layer with the build dependencies
3838
# See previous FROM line; this must match
39-
FROM node:22.13.0-alpine
39+
FROM node:22.13.1-alpine
4040

4141
ENV APP_BUNDLE_FOLDER=/opt/bundle
4242
ENV SCRIPTS_FOLDER=/docker

example/app/.meteor/release

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1+

example/app/.meteor/versions

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ [email protected]
3939
4040
4141
42-
modern-browsers@0.1.11
42+
modern-browsers@0.2.0
4343
4444
4545
@@ -65,5 +65,5 @@ [email protected]
6565
6666
6767
68-
68+
6969

example/default.dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# The tag here should match the Meteor version of your app, per .meteor/release
2-
FROM geoffreybooth/meteor-base:3.1.1
2+
FROM geoffreybooth/meteor-base:3.1.2
33

44
# Copy app package.json and package-lock.json into container
55
COPY ./app/package*.json $APP_SOURCE_FOLDER/
@@ -12,8 +12,8 @@ COPY ./app $APP_SOURCE_FOLDER/
1212
RUN bash $SCRIPTS_FOLDER/build-meteor-bundle.sh
1313

1414

15-
# Use the specific version of Node expected by your Meteor release, per https://docs.meteor.com/changelog.html; this is expected for Meteor 3.1.1
16-
FROM node:22.13.0-alpine
15+
# Use the specific version of Node expected by your Meteor release, per https://docs.meteor.com/changelog.html; this is expected for Meteor 3.1.2
16+
FROM node:22.13.1-alpine
1717

1818
ENV APP_BUNDLE_FOLDER=/opt/bundle
1919
ENV SCRIPTS_FOLDER=/docker

support.sh

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ set_node_version() {
9191
elif [[ "$1" == 3.0.4 ]]; then node_version='20.18.0'
9292
elif [[ "$1" == 3.1 ]]; then node_version='22.11.0'
9393
elif [[ "$1" == 3.1.1 ]]; then node_version='22.13.0'
94+
elif [[ "$1" == 3.1.2 ]]; then node_version='22.13.1'
9495
fi # End of versions
9596
}
9697

versions.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ meteor_versions=( \
6363
'3.0.3' \
6464
'3.0.4' \
6565
'3.1' \
66-
'3.1.1'
66+
'3.1.1' \
67+
'3.1.2'
6768
)
6869

6970
latest_version="${meteor_versions[*]: -1}"

0 commit comments

Comments
 (0)