Namespace
wekanteam
Image / Tag
wekan:friend
Content Digest
sha256:3ae71531b7964270d1e80e024ec6969f44acd50e5bbd23b549da8c75f0eb25c0
Details
Created

2018-06-14 20:59:04 UTC

Size

159 MB

Content Digest
Environment
ARCHITECTURE

linux-x64

BUILD_DEPS

apt-utils gnupg gosu wget curl bzip2 build-essential python git ca-certificates gcc-7

FIBERS_VERSION

2.0.0

METEOR_EDGE

1.5-beta.17

METEOR_RELEASE

1.6.0.1

NODE_VERSION

v8.11.1

NPM_VERSION

latest

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PORT

80

SRC_PATH

./

USE_EDGE

false


Layers

[#000] sha256:ff0d602f5a3adc8bf0a52a092aa7be6d1a540c92ded96fe6d3a81ec7b32fd8a3 - 15.59% (24.8 MB)

[#001] sha256:10fab58ed959df0bab08b7e25fb728fea2c2ea76e675c80156ac0b62a67d8ff3 - 1.16% (1.84 MB)

[#002] sha256:ad1363518ada7e760ad197bcc3d9eb3a612696ef5e6cd727466d1e9bf8621c36 - 83.25% (132 MB)


History
2018-04-28 06:43:28 UTC

/bin/sh -c #(nop) ADD file:7937ff37e662179cabfcc450db7baaa2c02a7fd9402a4736315f5c4d0b15a4b8 in /

2018-04-28 06:43:29 UTC

/bin/sh -c #(nop) CMD ["bash"]

2018-06-14 20:38:13 UTC

/bin/sh -c #(nop) MAINTAINER wekan

2018-06-14 20:38:14 UTC

/bin/sh -c #(nop) ARG NODE_VERSION

2018-06-14 20:38:14 UTC

/bin/sh -c #(nop) ARG METEOR_RELEASE

2018-06-14 20:38:14 UTC

/bin/sh -c #(nop) ARG METEOR_EDGE

2018-06-14 20:38:15 UTC

/bin/sh -c #(nop) ARG USE_EDGE

2018-06-14 20:38:15 UTC

/bin/sh -c #(nop) ARG NPM_VERSION

2018-06-14 20:38:15 UTC

/bin/sh -c #(nop) ARG FIBERS_VERSION

2018-06-14 20:38:16 UTC

/bin/sh -c #(nop) ARG ARCHITECTURE

2018-06-14 20:38:16 UTC

/bin/sh -c #(nop) ARG SRC_PATH

2018-06-14 20:38:16 UTC

/bin/sh -c #(nop) ENV BUILD_DEPS=apt-utils gnupg gosu wget curl bzip2 build-essential python git ca-certificates gcc-7

2018-06-14 20:38:17 UTC

/bin/sh -c #(nop) ENV NODE_VERSION=v8.11.1

2018-06-14 20:38:17 UTC

/bin/sh -c #(nop) ENV METEOR_RELEASE=1.6.0.1

2018-06-14 20:38:18 UTC

/bin/sh -c #(nop) ENV USE_EDGE=false

2018-06-14 20:38:18 UTC

/bin/sh -c #(nop) ENV METEOR_EDGE=1.5-beta.17

2018-06-14 20:38:18 UTC

/bin/sh -c #(nop) ENV NPM_VERSION=latest

2018-06-14 20:38:19 UTC

/bin/sh -c #(nop) ENV FIBERS_VERSION=2.0.0

2018-06-14 20:38:19 UTC

/bin/sh -c #(nop) ENV ARCHITECTURE=linux-x64

2018-06-14 20:38:19 UTC

/bin/sh -c #(nop) ENV SRC_PATH=./

2018-06-14 20:38:21 UTC

/bin/sh -c #(nop) COPY dir:e43a580617af531157736f76595825c26f4a598fc003fffbfb3ed2f645776fec in /home/wekan/app

2018-06-14 20:58:59 UTC

/bin/sh -c useradd --user-group --system --home-dir /home/wekan wekan && apt-get update -y && apt-get install -y --no-install-recommends ${BUILD_DEPS} && wget https://releases.wekan.team/node-${NODE_VERSION}-${ARCHITECTURE}.tar.gz && echo "509e79f1bfccc849b65bd3f207a56095dfa608f17502997e844fa9c9d01e6c20 node-v8.11.1-linux-x64.tar.gz" >> SHASUMS256.txt.asc && grep ${NODE_VERSION}-${ARCHITECTURE}.tar.gz SHASUMS256.txt.asc | shasum -a 256 -c - && rm -f SHASUMS256.txt.asc && tar xvzf node-${NODE_VERSION}-${ARCHITECTURE}.tar.gz && rm node-${NODE_VERSION}-${ARCHITECTURE}.tar.gz && mv node-${NODE_VERSION}-${ARCHITECTURE} /opt/nodejs && ln -s /opt/nodejs/bin/node /usr/bin/node && ln -s /opt/nodejs/bin/npm /usr/bin/npm && npm install -g npm@${NPM_VERSION} && npm install -g node-gyp && npm install -g fibers@${FIBERS_VERSION} && cd /home/wekan/ && chown wekan:wekan --recursive /home/wekan && curl https://install.meteor.com -o /home/wekan/install_meteor.sh && sed -i "s|RELEASE=.*|RELEASE=${METEOR_RELEASE}\"\"|g" ./install_meteor.sh && echo "Starting meteor ${METEOR_RELEASE} installation... \n" && chown wekan:wekan /home/wekan/install_meteor.sh && if [ "$USE_EDGE" = false ]; then gosu wekan:wekan sh /home/wekan/install_meteor.sh; else gosu wekan:wekan git clone --recursive --depth 1 -b release/METEOR@${METEOR_EDGE} git://github.com/meteor/meteor.git /home/wekan/.meteor; fi; mkdir -p /home/wekan/app/packages && chown wekan:wekan --recursive /home/wekan && cd /home/wekan/app/packages && gosu wekan:wekan git clone --depth 1 -b master git://github.com/wekan/flow-router.git kadira-flow-router && gosu wekan:wekan git clone --depth 1 -b master git://github.com/meteor-useraccounts/core.git meteor-useraccounts-core && sed -i 's/api\.versionsFrom/\/\/api.versionsFrom/' /home/wekan/app/packages/meteor-useraccounts-core/package.js && cd /home/wekan/.meteor && gosu wekan:wekan /home/wekan/.meteor/meteor -- help; cd /home/wekan/app && gosu wekan:wekan /home/wekan/.meteor/meteor add standard-minifier-js && gosu wekan:wekan /home/wekan/.meteor/meteor npm install && gosu wekan:wekan /home/wekan/.meteor/meteor build --directory /home/wekan/app_build && cp /home/wekan/app/fix-download-unicode/cfs_access-point.txt /home/wekan/app_build/bundle/programs/server/packages/cfs_access-point.js && chown wekan:wekan /home/wekan/app_build/bundle/programs/server/packages/cfs_access-point.js && cd /home/wekan/app_build/bundle/programs/server/ && gosu wekan:wekan npm install && mv /home/wekan/app_build/bundle /build && apt-get remove --purge -y ${BUILD_DEPS} && apt-get autoremove -y && rm -R /var/lib/apt/lists/* && rm -R /home/wekan/.meteor && rm -R /home/wekan/app && rm -R /home/wekan/app_build && rm /home/wekan/install_meteor.sh

2018-06-14 20:59:03 UTC

/bin/sh -c #(nop) ENV PORT=80

2018-06-14 20:59:03 UTC

/bin/sh -c #(nop) EXPOSE 80/tcp

2018-06-14 20:59:04 UTC

/bin/sh -c #(nop) CMD ["node" "/build/main.js"]

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete