fix(core): update

This commit is contained in:
Philipp Kunz 2019-06-10 10:43:22 +02:00
parent 5ef828500b
commit 9fbcb625d3
3 changed files with 7 additions and 21 deletions

View File

@ -31,6 +31,8 @@ release:
- docker:dind
stage: release
script:
- git clone git://git.qemu.org/qemu.git
- (cd qemu && ./configure --target-list=arm-linux-user --static && make && ls -a)
- npmci node install stable
- npmci docker login
- npmci docker build

View File

@ -1,19 +0,0 @@
FROM hosttoday/ht-docker-node:stable
LABEL author="Lossless GmbH <hello@lossless.com>"
# See https://crbug.com/795759
RUN apt-get update && apt-get install -yq libgconf-2-4 \
&& apt-get clean \
&& rm -r /var/lib/apt/lists/*
# Install latest chrome dev package.
# Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer
# installs, work.
RUN apt-get update && apt-get install -y wget --no-install-recommends \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
&& apt-get update \
&& apt-get install -y google-chrome-unstable \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /src/*.deb

View File

@ -4,7 +4,7 @@
"description": "docker image with nodejs and shipzone.io support",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test": "echo \"no npm test specified\"",
"build": "echo \"Not needed for now\""
},
"repository": {
@ -27,5 +27,8 @@
"cli.js",
"npmextra.json",
"readme.md"
]
],
"directories": {
"test": "test"
}
}