From 713fa6bb818d26531648cbf1f0da52f2fa3610d1 Mon Sep 17 00:00:00 2001 From: zablon Date: Sun, 11 Feb 2024 19:03:20 +0300 Subject: [PATCH 1/2] feat: Upgrade Docker image tag to specific number --- api/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index ac66944faa8..7d97e4cebf8 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -7,7 +7,8 @@ ARG API_PY_VERSION # Audio waveform # ################## -FROM docker.io/realies/audiowaveform:latest AS awf +# Pull the audiowaveform image from the realies repository with version 1.10.1 and assign an alias ` awf `. +FROM docker.io/realies/audiowaveform:1.10.1 AS awf # Identify dependencies of the `audiowaveform` binary and move them to `/deps`, # while retaining their folder structure From 52e0db77f35a563f6b900b9eb86f847de1bb3a56 Mon Sep 17 00:00:00 2001 From: Dhruv Bhanushali Date: Mon, 12 Feb 2024 11:16:14 +0400 Subject: [PATCH 2/2] Adjust code comment text --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index 7d97e4cebf8..c93807b608b 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -7,7 +7,7 @@ ARG API_PY_VERSION # Audio waveform # ################## -# Pull the audiowaveform image from the realies repository with version 1.10.1 and assign an alias ` awf `. +# Pull image `realies/audiowaveform` from Docker Hub and alias as `awf` FROM docker.io/realies/audiowaveform:1.10.1 AS awf # Identify dependencies of the `audiowaveform` binary and move them to `/deps`,