Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Travel-Routing-DE-EFA
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
derf
Travel-Routing-DE-EFA
Commits
d7f01be3
Commit
d7f01be3
authored
4 years ago
by
Birte Kristina Friesel
Browse files
Options
Downloads
Patches
Plain Diff
Add Dockerfile and docker-based .deb build scripts
parent
1a0a6576
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Dockerfile
+22
-0
22 additions, 0 deletions
Dockerfile
scripts/makedeb-docker
+11
-0
11 additions, 0 deletions
scripts/makedeb-docker
scripts/makedeb-docker-helper
+31
-0
31 additions, 0 deletions
scripts/makedeb-docker-helper
with
64 additions
and
0 deletions
Dockerfile
0 → 100644
+
22
−
0
View file @
d7f01be3
FROM
perl:5.30-slim
COPY
bin/ /app/bin/
COPY
lib/ /app/lib/
COPY
Build.PL cpanfile* /app/
WORKDIR
/app
ARG
DEBIAN_FRONTEND=noninteractive
RUN
apt-get update
\
&&
apt-get
-y
--no-install-recommends
install
ca-certificates curl gcc libc6-dev libssl1.1 libssl-dev libxml2 libxml2-dev make zlib1g-dev
\
&&
cpanm
-n
--no-man-pages
--installdeps
.
\
&&
perl Build.PL
\
&&
perl Build
\
&&
rm
-rf
~/.cpanm
\
&&
apt-get
-y
purge curl gcc libc6-dev libssl-dev libxml2-dev make zlib1g-dev
\
&&
apt-get
-y
autoremove
\
&&
apt-get
-y
clean
\
&&
rm
-rf
/var/cache/apt/
*
/var/lib/apt/lists/
*
ENTRYPOINT
["perl", "-Ilib", "bin/efa"]
This diff is collapsed.
Click to expand it.
scripts/makedeb-docker
0 → 100755
+
11
−
0
View file @
d7f01be3
#!/bin/sh
mkdir
-p
out
docker run
--rm
-v
"
${
PWD
}
:/orig:ro"
-v
"
${
PWD
}
/scripts:/scripts:ro"
\
-v
"
${
PWD
}
/out:/out"
-e
USER
=
$(
id
-u
)
-e
GROUP
=
$(
id
-g
)
\
-e
"DEBEMAIL=
${
DEBEMAIL
}
"
-e
"DEBFULLNAME=
${
DEBFULLNAME
}
"
\
-e
"LOGNAME=
${
LOGNAME
}
"
-e
"VERSION=
$(
git describe
--dirty
)
-1"
\
debian:buster /scripts/makedeb-docker-helper
echo
"Debian package has been written to
$(
pwd
)
/out"
This diff is collapsed.
Click to expand it.
scripts/makedeb-docker-helper
0 → 100755
+
31
−
0
View file @
d7f01be3
#!/bin/sh
set
-e
export
DEBIAN_FRONTEND
=
noninteractive
apt-get update
apt-get
-y
install
\
apt-file dh-make-perl libmodule-build-perl
\
libclass-accessor-perl libexception-class-perl libfile-slurp-perl
\
libwww-perl libxml-libxml-perl
\
libtest-compile-perl libtest-number-delta-perl libtest-pod-perl
\
libtest-fatal-perl libtest-simple-perl
apt-file update
apt-cache dumpavail | dpkg
--merge-avail
mkdir
-p
/src/app
cp
-a
/orig/Build.PL /orig/Changelog /orig/README /src/app
cp
-a
/orig/bin /orig/lib /orig/t /src/app
cd
/src/app
sed
-i
's/sign => 1/sign => 0/'
Build.PL
perl Build.PL
perl Build
perl Build manifest
perl Build dist
mv
Travel-Routing-DE-VRR-
*
.tar.gz ../app.tar.gz
dh-make-perl
--build
--version
"
${
VERSION
}
"
chown
${
USER
}
:
${
GROUP
}
../
*
.deb
mv
-v
../
*
.deb /out
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment