Skip to content

Commit

Permalink
feat: support for v2.16 (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolasss authored May 24, 2024
1 parent 2d52447 commit 46143f4
Show file tree
Hide file tree
Showing 11 changed files with 338 additions and 347 deletions.
1 change: 1 addition & 0 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ jobs:
- '2.13.3'
- '2.14'
- '2.15'
- '2.16'

steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ Copy `example/default.dockerfile` (or `example/app-with-native-dependencies.dock

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.

For example, if your project is running under Meteor 2.15:
For example, if your project is running under Meteor 2.16:

```Dockerfile
FROM geoffreybooth/meteor-base:2.15
FROM geoffreybooth/meteor-base:2.16
```

This version must match an available tag from [geoffreybooth/meteor-base](https://hub.docker.com/r/geoffreybooth/meteor-base/tags).
Expand Down
4 changes: 2 additions & 2 deletions example/app-with-native-dependencies.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# The tag here should match the Meteor version of your app, per .meteor/release
FROM geoffreybooth/meteor-base:2.15
FROM geoffreybooth/meteor-base:2.16

# Copy app package.json and package-lock.json into container
COPY ./app/package*.json $APP_SOURCE_FOLDER/
Expand All @@ -12,7 +12,7 @@ COPY ./app $APP_SOURCE_FOLDER/
RUN bash $SCRIPTS_FOLDER/build-meteor-bundle.sh


# Use the specific version of Node expected by your Meteor release, per https://docs.meteor.com/changelog.html; this is expected for Meteor 2.15
# Use the specific version of Node expected by your Meteor release, per https://docs.meteor.com/changelog.html; this is expected for Meteor 2.16
FROM meteor/node:14.21.4-alpine3.17

ENV APP_BUNDLE_FOLDER /opt/bundle
Expand Down
2 changes: 1 addition & 1 deletion example/app/.meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

meteor-base@1.5.1 # Packages every Meteor app needs to have
mobile-experience@1.1.1 # Packages for a great mobile UX
mongo@1.16.8 # The database Meteor supports right now
mongo@1.16.10 # The database Meteor supports right now
reactive-var@1.0.12 # Reactive variable for tracker

standard-minifier-css@1.9.2 # CSS minifier run for production mode
Expand Down
2 changes: 1 addition & 1 deletion example/app/.meteor/release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
METEOR@2.15
METEOR@2.16
18 changes: 9 additions & 9 deletions example/app/.meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ boilerplate-generator@1.7.2
caching-compiler@1.2.2
caching-html-compiler@1.2.1
callback-hook@1.5.1
check@1.3.2
check@1.4.1
ddp@1.4.1
ddp-client@2.6.1
ddp-common@1.4.0
ddp-server@2.7.0
ddp-client@2.6.2
ddp-common@1.4.1
ddp-server@2.7.1
diff-sequence@1.1.2
dynamic-import@0.7.3
ecmascript@0.16.8
Expand All @@ -33,19 +33,19 @@ id-map@1.1.1
insecure@1.0.7
inter-process-messaging@0.1.1
launch-screen@2.0.0
logging@1.3.3
logging@1.3.4
meteor@1.11.5
meteor-base@1.5.1
minifier-css@1.6.4
minifier-js@2.7.5
minimongo@1.9.3
minifier-js@2.8.0
minimongo@1.9.4
mobile-experience@1.1.1
mobile-status-bar@1.1.0
modern-browsers@0.1.10
modules@0.20.0
modules-runtime@0.13.1
modules-runtime-hot@0.14.2
mongo@1.16.8
mongo@1.16.10
mongo-decimal@0.1.3
mongo-dev-server@1.1.0
mongo-id@1.0.8
Expand All @@ -68,6 +68,6 @@ static-html@1.3.2
templating-tools@1.2.2
tracker@1.3.3
typescript@4.9.5
underscore@1.6.0
underscore@1.6.1
webapp@1.13.8
webapp-hashing@1.1.1
Loading

0 comments on commit 46143f4

Please sign in to comment.