Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ENV RUSTUP_HOME=/usr/local/rustup \
NVM_DIR=/usr/local/share/nvm \
PATH=$GOPATH/bin:/usr/local/bin:/usr/local/go/bin:/usr/local/cargo/bin:$PATH \
RUST_VERSION=1.91.1 \
GOLANG_VERSION=1.24.3 \
GOLANG_VERSION=1.26.2 \
NODE_VERSION=20 \
PNPM_VERSION=latest \
NVM_VERSION=latest
Expand Down
4 changes: 2 additions & 2 deletions docker/tavern.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dependency Cache
FROM golang:1.24.0-bookworm as base
FROM golang:1.26.2-trixie as base
WORKDIR /app
RUN mkdir -p /app/build /app/cdn
COPY ./go.mod /app/go.mod
Expand All @@ -20,7 +20,7 @@ RUN CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -ldflags='-w -s -extldflags
RUN go build -ldflags='-w -extldflags "-static"' -o /app/build/tavern ./tavern

# Production
FROM debian:bookworm as production
FROM debian:trixie as production
WORKDIR /app
CMD ["/app/tavern"]
EXPOSE 80 443 8080
Expand Down
2 changes: 1 addition & 1 deletion go.mod

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading