Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
agkyra
Commits
d26e1513
Commit
d26e1513
authored
Sep 07, 2015
by
Giorgos Korfiatis
Browse files
add a simle docker file for agkyra
parent
125aecd5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Dockerfile
0 → 100644
View file @
d26e1513
FROM
debian
RUN
apt-get update
&&
apt-get
install
-y
python-pip python-dev git wget vim
RUN
mkdir
/src
&&
cd
/src
&&
git clone https://github.com/pyinstaller/pyinstaller.git
ADD
. /src/agkyra
RUN
apt-get
install
-y
locales
&&
echo
'en_US.UTF-8 UTF-8'
>>
/etc/locale.gen
&&
locale-gen
ENV
LANG en_US.UTF-8
RUN
cd
/src/agkyra
&&
./configure.sh linux64
&&
python setup.py
install
RUN
adduser
--disabled-password
--gecos
""
--ingroup
root user
RUN
chmod
-R
g+w /src
RUN
su
-c
"cd /src/agkyra && ../pyinstaller/pyinstaller.py agkyra.spec"
user
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