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

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"]