Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some debian package manager tweaks #101

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/AcceptanceTests/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM ubuntu
ENV GIT_REV develop
RUN apt-get update && apt-get -y install python-pip python-dev \
RUN apt-get update && apt-get --no-install-recommends -y install python-pip python-dev \
libmysqlclient-dev libpq-dev \
libxml2-dev libxslt1-dev git \
libffi-dev zip python-mysqldb
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install mysql-server
RUN DEBIAN_FRONTEND=noninteractive apt-get --no-install-recommends -y install mysql-server
RUN pip install --upgrade pip; pip install git+https://github.com/telefonicaid/fiware-skuld@${GIT_REV}
RUN git clone https://github.com/telefonicaid/fiware-skuld/ /opt/fiware-skuld/
WORKDIR /opt/fiware-skuld
Expand Down
4 changes: 2 additions & 2 deletions docker/UnitTests/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM ubuntu
ENV GIT_REV develop
RUN apt-get update && apt-get -y install python-pip python-dev \
RUN apt-get update && apt-get --no-install-recommends -y install python-pip python-dev \
libmysqlclient-dev libpq-dev \
libxml2-dev libxslt1-dev git \
libffi-dev zip python-mysqldb
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install mysql-server
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends mysql-server
RUN git clone https://github.com/telefonicaid/fiware-skuld/ /opt/fiware-skuld/
WORKDIR /opt/fiware-skuld/
RUN git checkout ${GIT_REV}
Expand Down