Run go mod download in transcoder's Dockerfile.dev

This commit is contained in:
Zoe Roux 2025-03-23 15:00:20 +01:00
parent 7ec940a8dc
commit 92b0076bef
No known key found for this signature in database

View File

@ -46,5 +46,8 @@ WORKDIR /app
ENV NVIDIA_VISIBLE_DEVICES="all"
ENV NVIDIA_DRIVER_CAPABILITIES="all"
COPY go.mod go.sum ./
RUN go mod download
EXPOSE 7666
CMD ["wgo", "run", "-race", "."]