| tierno | dfe0957 | 2018-04-24 10:41:10 +0200 | [diff] [blame] | 1 | # This Dockerfile is intented for devops and deb package generation |
| 2 | # |
| tierno | a8d6363 | 2018-05-10 13:12:32 +0200 | [diff] [blame] | 3 | # Use Dockerfile.local for running osm/NBI in a docker container from source |
| 4 | # Use Dockerfile.fromdeb for running osm/NBI in a docker container from last stable package |
| tierno | dfe0957 | 2018-04-24 10:41:10 +0200 | [diff] [blame] | 5 | |
| 6 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 7 | FROM ubuntu:16.04 |
| 8 | |
| Mike Marchetti | c678d04 | 2018-04-18 13:51:27 -0400 | [diff] [blame] | 9 | RUN apt-get update && apt-get -y install git make python python3 \ |
| 10 | libcurl4-gnutls-dev libgnutls-dev tox python-dev python3-dev \ |
| tierno | a8d6363 | 2018-05-10 13:12:32 +0200 | [diff] [blame] | 11 | debhelper python-setuptools python-all python3-all apt-utils |
| 12 | |