diff --git a/.dockerignore b/.dockerignore index d6e4dc7..a131703 100644 --- a/.dockerignore +++ b/.dockerignore @@ -3,3 +3,4 @@ build.sh deploy.sh *.md +.idea diff --git a/Dockerfile b/Dockerfile index aa008a5..3479c94 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM debian:stable LABEL author="Jeremy Shimko , Adrian Pawlowski " +ARG DEBIAN_FRONTEND=noninteractive RUN groupadd -r node && useradd -m -g node node diff --git a/scripts/install-meteor.sh b/scripts/install-meteor.sh index aacd6eb..252820b 100755 --- a/scripts/install-meteor.sh +++ b/scripts/install-meteor.sh @@ -30,9 +30,9 @@ else # set the release version in the install script sed -i.bak "s/RELEASE=.*/RELEASE=\"$METEOR_VERSION\"/g" $TMP_DIR/install_meteor.sh - # replace tar command with bsdtar in the install script (bsdtar -xf "$TARBALL_FILE" -C "$INSTALL_TMPDIR") + # replace tar command with tar in the install script (tar -xf "$TARBALL_FILE" -C "$INSTALL_TMPDIR") # https://github.com/jshimko/meteor-launchpad/issues/39 - sed -i.bak "s/tar -xzf.*/bsdtar -xf \"\$TARBALL_FILE\" -C \"\$INSTALL_TMPDIR\"/g" $TMP_DIR/install_meteor.sh + sed -i.bak "s/tar -xzf.*/tar -xf \"\$TARBALL_FILE\" -C \"\$INSTALL_TMPDIR\"/g" $TMP_DIR/install_meteor.sh # install if [ "$METEOR_VERSION_CUSTOM" ]; then