Skip to content

Commit

Permalink
Feat: Add 3.0.2 (#165)
Browse files Browse the repository at this point in the history
With update script:

./update.sh --meteor-version 3.0.2 --node-version 20.15.1
  • Loading branch information
donstephan authored Aug 19, 2024
1 parent 720b368 commit 580d3cb
Show file tree
Hide file tree
Showing 11 changed files with 1,152 additions and 687 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 @@ -67,6 +67,7 @@ jobs:
- '2.15'
- '2.16'
- '3.0.1'
- '3.0.2'

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 3.0.1:
For example, if your project is running under Meteor 3.0.2:

```Dockerfile
FROM geoffreybooth/meteor-base:3.0.1
FROM geoffreybooth/meteor-base:3.0.2
```

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:3.0.1
FROM geoffreybooth/meteor-base:3.0.2

# 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 3.0.1
# Use the specific version of Node expected by your Meteor release, per https://docs.meteor.com/changelog.html; this is expected for Meteor 3.0.2
FROM node:20.15.1-alpine

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 @@

[email protected] # Packages every Meteor app needs to have
[email protected] # Packages for a great mobile UX
[email protected].0 # The database Meteor supports right now
[email protected].1 # The database Meteor supports right now
[email protected] # Reactive variable for tracker

[email protected] # 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 @@
[email protected].1
[email protected].2
Loading

0 comments on commit 580d3cb

Please sign in to comment.