Issue #32: Create Dockerfiles

This commit is contained in:
Pascal Honegger 2020-08-23 15:26:58 +02:00
parent 36e6fa7b09
commit f622d03d1b
4 changed files with 114 additions and 0 deletions

7
.dockerignore Normal file
View File

@ -0,0 +1,7 @@
# Ignore everything
*
# Allow source code
!Makefile
!src/**

View File

@ -0,0 +1,36 @@
#FROM ubuntu:rolling
FROM debian:buster-slim as build
RUN apt-get update \
&& apt-get install -y \
ca-certificates \
make \
gcc \
git \
libevent-dev \
libjpeg62-turbo-dev \
uuid-dev \
libbsd-dev \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /build/ustreamer/
COPY . .
RUN make
FROM debian:buster-slim as run
RUN apt-get update && \
apt-get install -y \
ca-certificates \
libevent-2.1 \
libevent-pthreads-2.1-6 \
libjpeg62-turbo \
uuid \
libbsd0 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /ustreamer
COPY --from=build /build/ustreamer/ustreamer .
#ENV LD_LIBRARY_PATH=/opt/vc/lib
EXPOSE 8080
ENTRYPOINT [ "./ustreamer", "--host=0.0.0.0", "--slowdown"]

View File

@ -0,0 +1,32 @@
FROM balenalib/raspberrypi3-debian:build as build
RUN apt-get update && \
apt-get install -y --no-install-recommends \
gcc \
libjpeg8-dev \
libbsd-dev \
libraspberrypi-dev \
wiringpi \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /build/ustreamer/
COPY . .
RUN make WITH_OMX=1 WITH_GPIO=1
FROM balenalib/raspberrypi3-debian:run as RUN
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libevent-2.1 \
libevent-pthreads-2.1-6 \
libjpeg8 \
uuid \
libbsd0 \
wiringpi \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /ustreamer
COPY --from=build /build/ustreamer/ustreamer .
EXPOSE 8080
ENTRYPOINT [ "./ustreamer", "--host=0.0.0.0"]

View File

@ -0,0 +1,39 @@
FROM balenalib/raspberrypi3-debian:build as build
RUN [ "cross-build-start" ]
RUN apt-get update && \
apt-get install -y --no-install-recommends \
gcc \
libjpeg8-dev \
libbsd-dev \
libraspberrypi-dev \
wiringpi \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /build/ustreamer/
COPY . .
RUN make WITH_OMX=1 WITH_GPIO=1
RUN [ "cross-build-end" ]
FROM balenalib/raspberrypi3-debian:run as RUN
RUN [ "cross-build-start" ]
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libevent-2.1 \
libevent-pthreads-2.1-6 \
libjpeg8 \
uuid \
libbsd0 \
wiringpi \
&& rm -rf /var/lib/apt/lists/*
RUN [ "cross-build-end" ]
WORKDIR /ustreamer
COPY --from=build /build/ustreamer/ustreamer .
EXPOSE 8080
ENTRYPOINT [ "./ustreamer", "--host=0.0.0.0"]