From 7718517381dc8d81764bdace6941cb8c17c46957 Mon Sep 17 00:00:00 2001 From: Thiago Nogueira Date: Tue, 24 Oct 2023 22:06:04 +0100 Subject: [PATCH] Feat: Add 2.13.3 --- example/app-with-native-dependencies.dockerfile | 4 ++-- example/default.dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/example/app-with-native-dependencies.dockerfile b/example/app-with-native-dependencies.dockerfile index 5e6e6a2..1e62edc 100644 --- a/example/app-with-native-dependencies.dockerfile +++ b/example/app-with-native-dependencies.dockerfile @@ -13,7 +13,7 @@ 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.13.3 -FROM meteor/meteor/meteor/node:14.21.4-alpine3.17 +FROM meteor/node:14.21.4-alpine3.17 ENV APP_BUNDLE_FOLDER /opt/bundle ENV SCRIPTS_FOLDER /docker @@ -36,7 +36,7 @@ RUN bash $SCRIPTS_FOLDER/build-meteor-npm-dependencies.sh --build-from-source # Start another Docker stage, so that the final image doesn’t contain the layer with the build dependencies # See previous FROM line; this must match -FROM meteor/meteor/meteor/node:14.21.4-alpine3.17 +FROM meteor/node:14.21.4-alpine3.17 ENV APP_BUNDLE_FOLDER /opt/bundle ENV SCRIPTS_FOLDER /docker diff --git a/example/default.dockerfile b/example/default.dockerfile index 4f7d8f4..2e9ea1d 100644 --- a/example/default.dockerfile +++ b/example/default.dockerfile @@ -13,7 +13,7 @@ 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.13.3 -FROM meteor/meteor/meteor/node:14.21.4-alpine3.17 +FROM meteor/node:14.21.4-alpine3.17 ENV APP_BUNDLE_FOLDER /opt/bundle ENV SCRIPTS_FOLDER /docker