Skip to content

Commit

Permalink
fix: Dockerfile.client to reduce vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
snyk-bot committed Sep 8, 2023
1 parent ee252d6 commit d686d83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.client
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM mwader/static-ffmpeg:4.4.1 as ffmpeg

# Go Binary Builder
FROM golang:1.20.5-alpine3.17 as go-build
FROM golang:1.21.0-alpine3.17 as go-build
WORKDIR /app
COPY . .
RUN go get -v
RUN go build -o streamdl

# Golang Protobuf Client and Logic
FROM golang:1.20.5-alpine3.17 as client
FROM golang:1.21.0-alpine3.17 as client
WORKDIR /app
RUN mkdir -p /app/dl /app/out
# Copy FFMPEG Binaries
Expand Down

0 comments on commit d686d83

Please sign in to comment.