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

Added ubuntu 14.04 support #3

Open
wants to merge 2 commits 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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Ignore output
**/packages
11 changes: 11 additions & 0 deletions distros/ubuntu/14.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM flb-build-base-ubuntu/14.04

ARG FLB_PREFIX
ARG FLB_VERSION

ENV FLB_TARBALL http://github.com/fluent/fluent-bit/archive/$FLB_PREFIX$FLB_VERSION.zip

RUN wget -O "/tmp/fluent-bit-${FLB_VERSION}.zip" ${FLB_TARBALL} && \
cd /tmp && unzip "fluent-bit-$FLB_VERSION.zip"

CMD cd "/tmp/fluent-bit-${FLB_VERSION}/" && ./debian.sh && cp ../*.deb /output
6 changes: 6 additions & 0 deletions distros/ubuntu/14.04/Dockerfile.base
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM ubuntu:14.04
ENV DEBIAN_FRONTEND noninteractive

RUN apt-get -qq update && \
apt-get install -y -qq curl ca-certificates build-essential cmake3 make bash sudo wget unzip nano vim valgrind dh-make && \
apt-get install -y -qq --reinstall lsb-base lsb-release