Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
dss-add-ons
user-defined-states
Merge requests
!73
Mr prepare docker image
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
andreas.fenkart
requested to merge
MR_prepare_docker_image
into
master
2 years ago
Overview
0
Commits
1
Pipelines
11
Changes
2
0
0
Compare
master
version 10
434bc332
2 years ago
version 9
ce19574f
2 years ago
version 8
678062c7
2 years ago
version 7
e961a03a
2 years ago
version 6
53894daf
2 years ago
version 5
2596bf1f
2 years ago
version 4
852f5f69
2 years ago
version 3
0c60035d
2 years ago
version 2
bfdc0c7d
2 years ago
version 1
82d626e1
2 years ago
master (base)
and
latest version
latest version
7ba4aa88
1 commit,
2 years ago
version 10
434bc332
5 commits,
2 years ago
version 9
ce19574f
5 commits,
2 years ago
version 8
678062c7
4 commits,
2 years ago
version 7
e961a03a
4 commits,
2 years ago
version 6
53894daf
3 commits,
2 years ago
version 5
2596bf1f
3 commits,
2 years ago
version 4
852f5f69
3 commits,
2 years ago
version 3
0c60035d
3 commits,
2 years ago
version 2
bfdc0c7d
3 commits,
2 years ago
version 1
82d626e1
2 commits,
2 years ago
2 files
+
26
−
6
Expand all files
Preferences
Preferences
File browser
List view
Tree view
Compare changes
Inline
Side-by-side
Show whitespace changes
Show one file at a time
Search (e.g. *.vue) (Ctrl+P)
docker/Dockerfile
0 → 100644
+
9
−
0
Options
View file @ 7ba4aa88
Edit in single-file editor
Open in Web IDE
FROM
ubuntu:22.04
RUN
export
DEBIAN_FRONTEND
=
noninteractive
;
apt-get update
;
apt-get
-y
install
\
libnode-dev
\
node-gyp
\
libssl-dev
\
npm
RUN
npm
install
-g
acorn
.gitlab-ci.yml
+
17
−
6
Options
View file @ 7ba4aa88
Edit in single-file editor
Open in Web IDE
include
:
-
project
:
'
dss-oe/helpers'
file
:
'
ci/templates/ci-template.yml'
file
:
'
ci/templates/dss-oe.yml'
stages
:
-
build-image
-
build
build-image
:
stage
:
build-image
script
:
-
docker image rm dss-add-ons/acorn-lint ||
true
-
docker build -t acorn-lint docker
-
docker tag acorn-lint git.digitalstrom.org:4567/dss-add-ons/user-defined-states/acorn-lint
-
docker push git.digitalstrom.org:4567/dss-add-ons/user-defined-states/acorn-lint
tags
:
-
helpers
build
:
extends
:
.ds485stack
stage
:
build
image
:
git.digitalstrom.org:4567/dss-add-ons/user-defined-states/acorn-lint
script
:
-
sudo apt-get update
-
sudo apt-get -y install libnode-dev node-gyp libssl-dev
-
sudo apt -y install npm
-
sudo npm install -g acorn
-
find ./ -name "*\.js" -exec acorn --silent {} \;
Menu
Explore
Projects
Groups
Topics
Snippets