Skip to content
This repository was archived by the owner on Oct 20, 2025. It is now read-only.
Merged
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
3 changes: 0 additions & 3 deletions .coveragerc

This file was deleted.

5 changes: 2 additions & 3 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.git
venv
vendor
*.tar
build
busybox.tar
calico-node.tar
default.etcd
.semaphore-cache
16 changes: 4 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,14 @@
build
vendor
certs
dist
venv
env
.idea
.vscode
*.pyc
*~
.coverage
cover
busybox.tar
calico-node.tar
routereflector.tar
calicobuild.created
caliconode.created
calico_containers/pycalico.egg-info/
busybox.tgz
calico-node-libnetwork.tgz
calico-node.tgz
calicoctl
docker

*.tar
*.created
133 changes: 0 additions & 133 deletions CONTRIBUTING.md

This file was deleted.

28 changes: 3 additions & 25 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,27 +1,5 @@
# Copyright 2015 Metaswitch Networks
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM gliderlabs/alpine:latest
FROM alpine
MAINTAINER Tom Denham <tom@projectcalico.org>
ADD dist/libnetwork-plugin /libnetwork-plugin
ENTRYPOINT ["/libnetwork-plugin"]

COPY requirements.txt /

RUN apk --update add python py-setuptools iproute2 && \
apk add --virtual build-dependencies git python-dev build-base curl bash py-pip alpine-sdk libffi-dev openssl-dev && \
pip install -r requirements.txt && \
apk del build-dependencies && rm -rf /var/cache/apk/*

COPY start.sh /
COPY libnetwork /calico_containers/libnetwork_plugin

ENTRYPOINT ["./start.sh"]
Loading