Select Git revision
.ruby-version
Dockerfile.meteor 985 B
FROM debian:bullseye
ENV NODEJS_VERSION=14.19.3
ENV METEOR_VERSION=2.5.6
ENV METEOR_ALLOW_SUPERUSER=true
ENV PATH=$PATH:/root/.meteor
RUN apt-get -qq update && \
apt-get -qq dist-upgrade && \
apt-get -qq install lsb-release curl wget ca-certificates debhelper apt-utils libarchive-tools gnupg bzip2 g++ build-essential git python3 && \
lsb_release -a && uname -a
RUN cd && \
wget -q "https://deb.nodesource.com/node_14.x/pool/main/n/nodejs/nodejs_${NODEJS_VERSION}-deb-1nodesource1_amd64.deb" -O nodejs.deb && \
apt-get -qq install ./nodejs.deb && \
npm install -g corepack && \
corepack enable
RUN cd && \
wget -q "https://static-meteor.netdna-ssl.com/packages-bootstrap/${METEOR_VERSION}/meteor-bootstrap-os.linux.x86_64.tar.gz" -O meteor-bootstrap.tar.gz && \
# The package only contains an ".meteor" directory that ends up in "/root/.meteor"
tar -xzf meteor-bootstrap.tar.gz && \
rm meteor-bootstrap.tar.gz && \
meteor --version