Skip to content

Commit

Permalink
Merge pull request #54 from jkewley/rasp-stretch-patch
Browse files Browse the repository at this point in the history
Raspbian Stretch patch
  • Loading branch information
emmanuel-bv authored Aug 19, 2019
2 parents eef71fb + e5cf182 commit 94161af
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
7 changes: 4 additions & 3 deletions modules/CameraCapture/arm32v7.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM balenalib/raspberrypi3
# The balena base image for building apps on Raspberry Pi 3.
FROM balenalib/raspberrypi3:stretch
# The balena base image for building apps on Raspberry Pi 3.
# Raspbian Stretch required for piwheels support. https://downloads.raspberrypi.org/raspbian/images/raspbian-2019-04-09/

RUN echo "BUILD MODULE: CameraCapture"

Expand Down Expand Up @@ -50,4 +51,4 @@ ADD /app/ .
# Expose the port
EXPOSE 5012

ENTRYPOINT [ "python3", "-u", "./main.py" ]
ENTRYPOINT [ "python3", "-u", "./main.py" ]
7 changes: 4 additions & 3 deletions modules/ImageClassifierService/arm32v7.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM balenalib/raspberrypi3
# The balena base image for building apps on Raspberry Pi 3.
FROM balenalib/raspberrypi3:stretch
# The balena base image for building apps on Raspberry Pi 3.
# Raspbian Stretch required for piwheels support. https://downloads.raspberrypi.org/raspbian/images/raspbian-2019-04-09/

RUN echo "BUILD MODULE: ImageClassifierService"

Expand Down Expand Up @@ -40,4 +41,4 @@ EXPOSE 80
WORKDIR /app

# Run the flask server for the endpoints
CMD ["python3","app.py"]
CMD ["python3","app.py"]
7 changes: 4 additions & 3 deletions modules/SenseHatDisplay/arm32v7.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM balenalib/raspberrypi3
# The balena base image for building apps on Raspberry Pi 3.
FROM balenalib/raspberrypi3:stretch
# The balena base image for building apps on Raspberry Pi 3.
# Raspbian Stretch required for piwheels support. https://downloads.raspberrypi.org/raspbian/images/raspbian-2019-04-09/

RUN echo "BUILD MODULE: SenseHatDisplay"

Expand Down Expand Up @@ -39,4 +40,4 @@ RUN [ "cross-build-end" ]
ADD /app/ .
ADD /build/ .

ENTRYPOINT ["python3","-u", "./main.py"]
ENTRYPOINT ["python3","-u", "./main.py"]

0 comments on commit 94161af

Please sign in to comment.