Re-use RPiPlay original dockerfile, add version file

This commit is contained in:
Daniel Doubet
2022-07-01 10:19:13 -05:00
parent f445f9c6ee
commit ca698d1e10
3 changed files with 7 additions and 6 deletions
+1
View File
@@ -0,0 +1 @@
1.1.0
+1 -1
View File
@@ -44,4 +44,4 @@ data:
- BALENA_HOST_CONFIG_gpu_mem: 256
- BALENA_HOST_CONFIG_gpu_mem_512: 128
- BALENA_HOST_CONFIG_dtoverlay: vc4-fkms-v3d
version: 1.0.18
version: 1.1.0
+5 -5
View File
@@ -32,14 +32,14 @@ RUN dockerize -n --verbose -g video -g audio -o /rootfs/ /usr/local/bin/rpiplay
FROM --platform=linux/arm/v6 busybox:stable
COPY --from=builder /rootfs/ /tmp
COPY --from=builder /rootfs/ ./
WORKDIR /usr/src/app/
COPY start.sh /tmp/start.sh
COPY start.sh ./start.sh
COPY VERSION /tmp/VERSION
COPY VERSION ./VERSION
RUN chmod +x /tmp/start.sh
RUN chmod +x ./start.sh
CMD /tmp/start.sh && bash
CMD ./start.sh && bash