Compare commits

..

12 Commits

Author SHA1 Message Date
e8c24d504c 4.3.6 2017-02-18 21:11:15 +01:00
866346a0a5 fix 2017-02-18 18:39:14 +01:00
04ea46f681 fix yarn install 2017-02-18 18:34:45 +01:00
cd858ae9fa fix curl 2017-02-18 18:29:27 +01:00
dc28ada99a add yarn 2017-02-18 18:26:19 +01:00
09c78e9577 update to latest node versions for base image 2016-11-18 00:54:35 +01:00
7525d1af5c 4.3.5 2016-08-31 12:48:35 +02:00
043651bfac removed python3 version 2016-08-31 12:47:57 +02:00
621fff81c3 4.3.4 2016-08-31 12:40:17 +02:00
b0e8ff164f added triggers to valid release criteria 2016-08-31 12:40:13 +02:00
21ce311be3 4.3.3 2016-08-31 00:15:44 +02:00
c030b94bc6 update to only publish on tags 2016-08-31 00:15:38 +02:00
4 changed files with 13 additions and 19 deletions

View File

@ -1,4 +1,4 @@
image: hosttoday/ht-docker-dbase
image: hosttoday/ht-docker-dbase:latest
services:
- docker:dind
@ -28,7 +28,8 @@ test:
script:
- npmci test docker
only:
- master
- tags
- triggers
tags:
- lossless
- priv
@ -38,7 +39,8 @@ release:
script:
- npmci publish docker
only:
- master
- tags
- triggers
tags:
- lossless
- priv
@ -48,7 +50,8 @@ trigger:
script:
- npmci trigger
only:
- master
- tags
- triggers
tags:
- lossless
- priv

View File

@ -1,7 +1,7 @@
FROM ubuntu:latest
# important environment variables
ENV NODE_VERSION_LTS="4.4.7" NODE_VERSION_STABLE="6.3.0" NVM_DIR="/usr/local/nvm"
ENV NODE_VERSION_LTS="6.9.1" NODE_VERSION_STABLE="7.1.0" NVM_DIR="/usr/local/nvm"
# Set debconf to run non-interactively and install packages
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections \
@ -18,6 +18,10 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
openssl \
python \
rsync \
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
&& apt-get update \
&& apt-get install yarn -y \
&& apt-get clean \
&& rm -r /var/lib/apt/lists/*

View File

@ -1,13 +0,0 @@
FROM hosttoday/ht-docker-node:latest
RUN apt-get update \
&& apt-get install -y -q --no-install-recommends \
python3 \
&& apt-get clean \
&& rm -r /var/lib/apt/lists/*
# Install pip and symlink python to python3
RUN curl -O https://bootstrap.pypa.io/get-pip.py \
&& python3 get-pip.py \
&& rm get-pip.py \
&& rm -r /usr/bin/python \
&& ln -s /usr/bin/python3 /usr/bin/python

View File

@ -1,6 +1,6 @@
{
"name": "ht-docker-node",
"version": "4.3.2",
"version": "4.3.6",
"description": "docker image with nodejs with shipzone.io support",
"main": "index.js",
"scripts": {