blob: ac1d93ce1b1ecbbc4a919634fd794c1851964f4a [file] [log] [blame]
Zsolt Haraszti361dc592016-09-25 22:25:23 -07001#!/usr/bin/env python
2#
3# Copyright 2016 the original author or authors.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17
18FROM alpine:3.4
19
20MAINTAINER Zsolt Haraszti <zharaszt@ciena.com>
21MAINTAINER Ali Al-Shabibi <ali.al-shabibi@onlab.us>
22MAINTAINER Nathan Knuth <nathan.knuth@tibitcom.com>
23
24# Update to have latest images
25RUN apk add --update python py-pip && \
26 apk --allow-untrusted --no-cache -X http://apkproxy.heroku.com/andyshinn/alpine-pkg-glibc add glibc glibc-bin
27
28COPY requirements.txt /tmp/requirements.txt
29
30# Install app dependencies
31RUN apk add build-base gcc abuild binutils python-dev libffi-dev openssl-dev git linux-headers && \
Khen Nursimulu6f319a32016-10-25 23:06:58 -040032 pip install cython==0.24.1 enum34 six && \
Zsolt Haraszti361dc592016-09-25 22:25:23 -070033 pip install -r /tmp/requirements.txt && \
34 apk del --purge build-base gcc abuild binutils python-dev libffi-dev openssl-dev git linux-headers
35
36# Bundle app source
37COPY voltha /voltha
38
39# Exposing process and default entry point
40# EXPOSE 8000
41CMD ["python", "voltha/main.py"]