Skip to content

Commit

Permalink
Update transcoder dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
zoriya committed Aug 21, 2024
1 parent e7c9eca commit bf40557
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions transcoder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# FROM golang:1.22 as build
FROM debian:trixie-slim as build
FROM debian:trixie-slim AS build
# those were copied from https://github.com/docker-library/golang/blob/master/Dockerfile-linux.template
ENV GOTOOLCHAIN=local
ENV GOPATH /go
ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH
ENV GOPATH=/go
ENV PATH=$GOPATH/bin:/usr/local/go/bin:$PATH
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
Expand Down
4 changes: 2 additions & 2 deletions transcoder/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
FROM debian:trixie-slim
# those were copied from https://github.com/docker-library/golang/blob/master/Dockerfile-linux.template
ENV GOTOOLCHAIN=local
ENV GOPATH /go
ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH
ENV GOPATH=/go
ENV PATH=$GOPATH/bin:/usr/local/go/bin:$PATH
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
Expand Down

0 comments on commit bf40557

Please sign in to comment.