Use array syntax for cmds instead of bash style

This commit is contained in:
Zoe Roux 2024-04-16 01:17:27 +02:00
parent c4cd4ead44
commit 0c66363920
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -59,4 +59,4 @@ ENV NVIDIA_VISIBLE_DEVICES="all"
ENV NVIDIA_DRIVER_CAPABILITIES="all"
EXPOSE 7666
CMD ./transcoder
CMD ["./transcoder"]

View File

@ -47,4 +47,4 @@ ENV NVIDIA_VISIBLE_DEVICES="all"
ENV NVIDIA_DRIVER_CAPABILITIES="all"
EXPOSE 7666
CMD wgo run -race .
CMD ["wgo", "run", "-race", "."]