Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
PaNOSC
Data Analysis Services
packme
Commits
a15199d6
Commit
a15199d6
authored
Jan 24, 2020
by
Eric Pellegrini
Browse files
added Dockerfile for running packeme as Docker entrypoint
parent
1daf9066
Changes
2
Hide whitespace changes
Inline
Side-by-side
Dockerfile
0 → 100644
View file @
a15199d6
FROM
ubuntu:bionic
as
build
SHELL
["/bin/bash", "-c"]
RUN
export
DEBIAN_FRONTEND
=
noninteractive
RUN
apt-get update
RUN
apt
install
-y
apt-utils
RUN
apt
install
-y
packer
RUN
apt
install
-y
wget
RUN
apt
install
-y
gcc
WORKDIR
/tmp
RUN
wget https://download.qemu.org/qemu-4.2.0.tar.xz
RUN
tar
xvJf qemu-4.2.0.tar.xz
WORKDIR
qemu-4.2.0
RUN
apt
install
-y
pkg-config
RUN
apt
install
-y
libglib2.0-dev
RUN
apt
install
-y
libpixman-1-dev
RUN
apt
install
-y
flex
RUN
apt
install
-y
bison
RUN
./configure
;
make
;
make
install
RUN
apt
install
-y
python3-pip
RUN
pip3
install
packme
WORKDIR
/tmp
ENTRYPOINT
["/usr/local/bin/packme"]
templates/base-ill/manifest.yml
View file @
a15199d6
...
...
@@ -14,7 +14,7 @@ parameters:
ssh_username
:
root
user
:
si-admin
user_fullname
:
si-admin
headless
:
fals
e
headless
:
tru
e
build_output_directory
:
builds
packer
:
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment