Skip to content

Commit 94161af

Browse files
authored
Merge pull request #54 from jkewley/rasp-stretch-patch
Raspbian Stretch patch
2 parents eef71fb + e5cf182 commit 94161af

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

modules/CameraCapture/arm32v7.Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
FROM balenalib/raspberrypi3
2-
# The balena base image for building apps on Raspberry Pi 3.
1+
FROM balenalib/raspberrypi3:stretch
2+
# The balena base image for building apps on Raspberry Pi 3.
3+
# Raspbian Stretch required for piwheels support. https://downloads.raspberrypi.org/raspbian/images/raspbian-2019-04-09/
34

45
RUN echo "BUILD MODULE: CameraCapture"
56

@@ -50,4 +51,4 @@ ADD /app/ .
5051
# Expose the port
5152
EXPOSE 5012
5253

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

modules/ImageClassifierService/arm32v7.Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
FROM balenalib/raspberrypi3
2-
# The balena base image for building apps on Raspberry Pi 3.
1+
FROM balenalib/raspberrypi3:stretch
2+
# The balena base image for building apps on Raspberry Pi 3.
3+
# Raspbian Stretch required for piwheels support. https://downloads.raspberrypi.org/raspbian/images/raspbian-2019-04-09/
34

45
RUN echo "BUILD MODULE: ImageClassifierService"
56

@@ -40,4 +41,4 @@ EXPOSE 80
4041
WORKDIR /app
4142

4243
# Run the flask server for the endpoints
43-
CMD ["python3","app.py"]
44+
CMD ["python3","app.py"]

modules/SenseHatDisplay/arm32v7.Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
FROM balenalib/raspberrypi3
2-
# The balena base image for building apps on Raspberry Pi 3.
1+
FROM balenalib/raspberrypi3:stretch
2+
# The balena base image for building apps on Raspberry Pi 3.
3+
# Raspbian Stretch required for piwheels support. https://downloads.raspberrypi.org/raspbian/images/raspbian-2019-04-09/
34

45
RUN echo "BUILD MODULE: SenseHatDisplay"
56

@@ -39,4 +40,4 @@ RUN [ "cross-build-end" ]
3940
ADD /app/ .
4041
ADD /build/ .
4142

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

0 commit comments

Comments
 (0)