Compare commits

...

10 Commits

Author SHA1 Message Date
1acbe775fc 5.0.0 2018-07-16 00:16:12 +02:00
98f9724739 4.3.69 2018-07-16 00:15:36 +02:00
a93ee5a185 4.3.68 2018-07-02 23:02:51 +02:00
90bae2fce4 fix(core): update node versions 2018-07-02 23:02:51 +02:00
ae30ceec26 4.3.67 2018-05-27 13:33:19 +02:00
f1426931fa fix(tests): fis test that did not make sense 2018-05-27 13:33:19 +02:00
097a741488 4.3.66 2018-05-27 13:21:50 +02:00
9d62eab807 fix(dependencies): update to scoped versions of npmci and npmdocker 2018-05-27 13:21:49 +02:00
baeb46ed81 4.3.65 2018-05-27 13:18:51 +02:00
ddd4970762 remove yarn 2018-05-27 13:18:17 +02:00
8 changed files with 11 additions and 14 deletions

View File

@ -8,7 +8,7 @@ stages:
- triggerPagesVerify
before_script:
- yarn global add npmci
- npm install -g @shipzone/npmci
- npmci docker login
buildTest:
@ -55,7 +55,7 @@ pages:
- 'npmci -v'
image: hosttoday/ht-docker-node:npmci
script:
- npmci command yarn global add npmpage
- npmci command npm install -g npmpage
- npmci command npmpage
only:
- tags

View File

@ -2,7 +2,7 @@ FROM ubuntu:xenial
LABEL author="Lossless GmbH <office@lossless.com>"
WORKDIR /workspace
# important environment variables
ENV NODE_VERSION_LTS="8.9.4" NODE_VERSION_STABLE="9.4.0" NVM_DIR="/usr/local/nvm"
ENV NODE_VERSION_LTS="8.11.3" NODE_VERSION_STABLE="10.5.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 \
@ -23,10 +23,7 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
rsync \
ssh \
wget \
&& 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,4 +1,4 @@
FROM hosttoday/ht-docker-node:stable
LABEL author="Lossless GmbH <office@lossless.com>"
RUN yarn global add @shipzone/npmci
RUN npm install -g @shipzone/npmci

View File

@ -1,4 +1,4 @@
FROM hosttoday/ht-docker-node:stable
LABEL author="Lossless GmbH <office@lossless.com>"
RUN yarn global add npmci npmdocker @gitzone/npmts ts-node
RUN npm install -g @shipzone/npmci @gitzone/npmdocker @gitzone/npmts ts-node

View File

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

View File

@ -1,2 +1,2 @@
#!/bin/sh
yarn -v
echo "this runs within latest container!";

View File

@ -4,6 +4,6 @@ npmci -v
# check if we can use lts
npmci install lts
# check if yarn picks it up
npmci command yarn global add npmts
# check if npm picks it up
npmci command npm install -g npmts
npmci command npmts -v

View File

@ -1,3 +1,3 @@
# test yarn
yarn global add npmts
# npm
npm install -g npmts
npmts -v