
This fix updates the packaging of synergy scheduler manager making it compliant with the indigo-2 requirements. Change-Id: I7b74952a635cf097eb7c8d3d14176fa39dc43c74 Sem-Ver: bugfix
20 lines
665 B
Docker
20 lines
665 B
Docker
FROM ubuntu:14.04
|
|
MAINTAINER Vincent Llorens <vincent.llorens@cc.in2p3.fr>
|
|
RUN apt-get update && apt-get install -y software-properties-common
|
|
RUN add-apt-repository cloud-archive:liberty
|
|
RUN apt-get update \
|
|
&& apt-get install -y build-essential \
|
|
debhelper \
|
|
devscripts \
|
|
dh-systemd \
|
|
git-core \
|
|
python-all \
|
|
python-pbr \
|
|
python-setuptools
|
|
RUN mkdir /tmp/synergy
|
|
RUN useradd -m -p pkger pkger
|
|
USER pkger
|
|
COPY build.sh /home/pkger/build.sh
|
|
WORKDIR /home/pkger
|
|
CMD bash build.sh
|