Page MenuHomeDevCentral

No OneTemporary

diff --git a/README.md b/README.md
index 01ba529..e570814 100644
--- a/README.md
+++ b/README.md
@@ -1,54 +1,53 @@
### Docker images for Jenkins agents
This repository offers Dockerfile to build images to run Jenkins agents
for CI and CD purposes.
#### nasqueron/jenkins-agent-barebone
This image contains only what's required by Jenkins:
* an OpenSSH server
* Java
* ant
#### nasqueron/jenkins-agent-php
This image contains:
* The software required by Jenkins:
* an OpenSSH server
* Java
* ant
* Version control:
* Git
* Mercurial
* Subversion
* PHP:
* PHP 5
* Composer
* The usual CI tools described in jenkins-php.org:
* PHPUnit
* PHP_CodeSniffer
* phpcpd
* phpDox
* PDepend
* phploc
* PHPMD
* Code review:
* Arcanist
#### nasqueron/jenkins-agent-node
This image contains:
* The software required by Jenkins:
* an OpenSSH server
* Java
* ant
* Version control:
* Git
* Node:
- * Node 9.x
- * PhantomJS
+ * Node 19.x
* node-sass
* Spectacle
diff --git a/jenkins-agent-node/Dockerfile b/jenkins-agent-node/Dockerfile
index 95090af..b5eb8bf 100644
--- a/jenkins-agent-node/Dockerfile
+++ b/jenkins-agent-node/Dockerfile
@@ -1,25 +1,25 @@
#
# Nasqueron - Jenkins agent Docker image for Node applications
#
FROM nasqueron/jenkins-agent-barebone
MAINTAINER Sébastien Santoro aka Dereckson <dereckson+nasqueron-docker@espace-win.org>
#
# Prepare the container
#
RUN apt-get update && \
apt-get install -y curl unzip git sudo python libssl-dev pkg-config build-essential \
cmake nano vim file wget && \
- curl -sL https://deb.nodesource.com/setup_9.x | bash && \
+ curl -sL https://deb.nodesource.com/setup_19.x | bash - && \
apt-get install -y nodejs && \
apt-get autoremove && apt-get clean && \
- npm install --unsafe-perm -g node-sass && \
- npm install --unsafe-perm -g spectacle-docs && \
npm install -g yarn && \
+ cd /opt && git clone https://github.com/nasqueron/spectacle && cd spectacle && yarn install && \
+ ln -s /opt/spectacle/bin/spectacle.js /usr/local/bin/spectacle && \
groupadd -r app -g 433 && \
mkdir /home/app && \
useradd -u 431 -r -g app -d /home/app -s /bin/sh -c "Default application account" app && \
chown -R app:app /home/app && \
chmod 711 /home/app

File Metadata

Mime Type
text/x-diff
Expires
Tue, Jul 7, 17:20 (1 d, 2 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3898690
Default Alt Text
(2 KB)

Event Timeline