From 5ba28e0a68b78355dcc056dd096d40337a6f525c Mon Sep 17 00:00:00 2001 From: Sam Stoelinga Date: Thu, 16 Jun 2016 23:41:46 +0800 Subject: [PATCH] Fix issue with using ubuntu:latest rsyslog service was no longer existent when pulling from ubuntu:latest. Also instead of relying on ubuntu:latest it's better to rely on a specific version, such that our image won't break on a new release. --- Dockerfile | 2 +- entrypoint.sh | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 092f682..b65c8b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:latest +FROM ubuntu:16.04 MAINTAINER Przemek Szalko ENV DEBIAN_FRONTEND noninteractive diff --git a/entrypoint.sh b/entrypoint.sh index 5d70298..8ba3c7b 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,9 +2,6 @@ set -e -# start logging -service rsyslog start - # enable IP forwarding sysctl -w net.ipv4.ip_forward=1