Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

WEAV-3246: Dockerfile for weave device manager #249

Open
wants to merge 1 commit into
base: master
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
20 changes: 20 additions & 0 deletions build/contrib/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
FROM ubuntu:14.04

RUN \
apt-get update && \
apt-get -y upgrade && \
apt-get install -y python-pip python-setuptools bridge-utils \
libglib2.0-dev libdbus-1-dev libudev-dev \
libical-dev libreadline-dev git-core && \
pip install --user grpc google-cloud protobuf && \
sudo cpan -i Text::Template && \
mkdir weave

COPY . weave

RUN cd weave && \
./configure --disable-systemd && \
make all && \
make install
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should be using Makefile-Standalone whenever we build any of the desktop tools, rather than invoking ./configure with default args. The former employs project configuration files that configures OpenWeave specifically for desktop use.


CMD ["/bin/bash"]
Empty file.