Compare commits
17 Commits
Author | SHA1 | Date | |
---|---|---|---|
6ee919ac34 | |||
1b8680edff | |||
67f4456073 | |||
b2835bd220 | |||
a0a2cc2eda | |||
e8c24d504c | |||
866346a0a5 | |||
04ea46f681 | |||
cd858ae9fa | |||
dc28ada99a | |||
09c78e9577 | |||
7525d1af5c | |||
043651bfac | |||
621fff81c3 | |||
b0e8ff164f | |||
21ce311be3 | |||
c030b94bc6 |
@ -1,4 +1,4 @@
|
|||||||
image: hosttoday/ht-docker-dbase
|
image: hosttoday/ht-docker-dbase:latest
|
||||||
services:
|
services:
|
||||||
- docker:dind
|
- docker:dind
|
||||||
|
|
||||||
@ -27,8 +27,6 @@ test:
|
|||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- npmci test docker
|
- npmci test docker
|
||||||
only:
|
|
||||||
- master
|
|
||||||
tags:
|
tags:
|
||||||
- lossless
|
- lossless
|
||||||
- priv
|
- priv
|
||||||
@ -38,7 +36,8 @@ release:
|
|||||||
script:
|
script:
|
||||||
- npmci publish docker
|
- npmci publish docker
|
||||||
only:
|
only:
|
||||||
- master
|
- tags
|
||||||
|
- triggers
|
||||||
tags:
|
tags:
|
||||||
- lossless
|
- lossless
|
||||||
- priv
|
- priv
|
||||||
@ -48,7 +47,8 @@ trigger:
|
|||||||
script:
|
script:
|
||||||
- npmci trigger
|
- npmci trigger
|
||||||
only:
|
only:
|
||||||
- master
|
- tags
|
||||||
|
- triggers
|
||||||
tags:
|
tags:
|
||||||
- lossless
|
- lossless
|
||||||
- priv
|
- priv
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
FROM ubuntu:latest
|
FROM ubuntu:latest
|
||||||
|
|
||||||
# important environment variables
|
# 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
|
# Set debconf to run non-interactively and install packages
|
||||||
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections \
|
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 \
|
openssl \
|
||||||
python \
|
python \
|
||||||
rsync \
|
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 \
|
&& apt-get clean \
|
||||||
&& rm -r /var/lib/apt/lists/*
|
&& rm -r /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
@ -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
|
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ht-docker-node",
|
"name": "ht-docker-node",
|
||||||
"version": "4.3.2",
|
"version": "4.3.7",
|
||||||
"description": "docker image with nodejs with shipzone.io support",
|
"description": "docker image with nodejs with shipzone.io support",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
# test availability of node and npm
|
||||||
npm -v
|
npm -v
|
||||||
node -v
|
node -v
|
||||||
|
|
||||||
|
# test yarn
|
||||||
|
yarn install npmts
|
||||||
|
npmts -v
|
||||||
|
@ -1 +1,9 @@
|
|||||||
|
# check if npmci is available
|
||||||
npmci -v
|
npmci -v
|
||||||
|
|
||||||
|
# check if we can use lts
|
||||||
|
npmci install lts
|
||||||
|
|
||||||
|
# check if yarn picks it up
|
||||||
|
npmci command yarn global add npmts
|
||||||
|
npmci command npmts -v
|
||||||
|
Reference in New Issue
Block a user