Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
images
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Michal Nowak
images
Commits
20ffebf3
Verified
Commit
20ffebf3
authored
Aug 19, 2020
by
Michal Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Install libedit-dev to Debian Buster amd64
parent
53ade3c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
docker/Makefile
docker/Makefile
+3
-0
docker/bind9/debian-template/Dockerfile
docker/bind9/debian-template/Dockerfile
+1
-0
No files found.
docker/Makefile
View file @
20ffebf3
...
...
@@ -39,6 +39,7 @@ dnstap_debian_buster_amd64 := yes
dnstap_debian_sid_amd64
:=
yes
dnstap_debian_sid_i386
:=
yes
gcovr_debian_buster_amd64
:=
yes
libedit_debian_buster_amd64
:=
yes
nodejs_debian_buster_amd64
:=
12
python_qa_debian_buster_amd64
:=
yes
respdiff_debian_buster_amd64
:=
yes
...
...
@@ -90,6 +91,7 @@ $(TARGETS): CPPCHECK = $(cppcheck_$(VENDOR)_$(VERSION)_$(ARCH))
$(TARGETS)
:
DANGER = $(danger_$(VENDOR)_$(VERSION)_$(ARCH))
$(TARGETS)
:
DNSTAP = $(dnstap_$(VENDOR)_$(VERSION)_$(ARCH))
$(TARGETS)
:
GCOVR = $(gcovr_$(VENDOR)_$(VERSION)_$(ARCH))
$(TARGETS)
:
LIBEDIT = $(libedit_$(VENDOR)_$(VERSION)_$(ARCH))
$(TARGETS)
:
NODEJS = $(nodejs_$(VENDOR)_$(VERSION)_$(ARCH))
$(TARGETS)
:
PYTHON_QA = $(python_qa_$(VENDOR)_$(VERSION)_$(ARCH))
$(TARGETS)
:
RESPDIFF = $(respdiff_$(VENDOR)_$(VERSION)_$(ARCH))
...
...
@@ -110,6 +112,7 @@ $(TARGETS):
-e
's,@DANGER@,
$(DANGER)
,g'
\
-e
's,@DNSTAP@,
$(DNSTAP)
,g'
\
-e
's,@GCOVR@,
$(GCOVR)
,g'
\
-e
's,@LIBEDIT@,
$(LIBEDIT)
,g'
\
-e
's,@KYUA_GIT_COMMIT@,
$(KYUA_GIT_COMMIT)
,g'
\
-e
's,@NODEJS@,
$(NODEJS)
,g'
\
-e
's,@PYTHON_QA@,
$(PYTHON_QA)
,g'
\
...
...
docker/bind9/debian-template/Dockerfile
View file @
20ffebf3
...
...
@@ -110,6 +110,7 @@ RUN if [ -n "@NODEJS@" ] && [ "@DANGER@" = "yes" ]; then npm install -g danger@9
RUN if
[
-n
"@NODEJS@"
]
&&
[
"@DANGER@"
=
"yes"
]
;
then
pip3
install
danger-python
&&
sed
-i
'/CAN_BE_MERGED/{p;s|CAN|CANNOT|;s|can|cannot|}; s|OPEN = "open"|OPEN = "opened"|'
/usr/local/lib/python3.7/dist-packages/danger_python/models.py
;
fi
RUN if
[
"@DNSTAP@"
=
"yes"
]
;
then
apt-get
-y
install
libfstrm-dev libprotobuf-c-dev protobuf-c-compiler
;
fi
RUN if
[
"@GCOVR@"
=
"yes"
]
;
then
apt-get
-y
install
gcovr
;
fi
RUN if
[
"@LIBEDIT@"
=
"yes"
]
;
then
apt-get
-y
install
libedit-dev
;
fi
RUN if
[
"@PYTHON_QA@"
=
"yes"
]
;
then
pip3
install
flake8
==
3.8.3
pylint
==
2.5.3
;
fi
RUN if
[
"@RESPDIFF@"
=
"yes"
]
;
then
apt-get
-y
install
python3-dpkt python3-lmdb python3-numpy python3-scipy python3-tabulate
;
fi
RUN if
[
"@SHELLCHECK@"
=
"yes"
]
;
then
apt-get
-y
install
shellcheck
;
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment