Skip to content

Commit

Permalink
Merge pull request #1765 from BishopFox/go/v1.22.5
Browse files Browse the repository at this point in the history
Go 1.22.5, Zig 0.13.0
  • Loading branch information
moloch-- authored Aug 23, 2024
2 parents 71c922c + cf971ea commit c58cb2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# STAGE: base
## Compiles Sliver for use
FROM golang:1.22.2 as base
FROM golang:1.22.5 AS base

### Base packages
RUN apt-get update --fix-missing && apt-get -y install \
Expand All @@ -29,7 +29,7 @@ RUN cp -vv sliver-server /opt/sliver-server
# STAGE: test
## Run unit tests against the compiled instance
## Use `--target test` in the docker build command to run this stage
FROM base as test
FROM base AS test

RUN apt-get update --fix-missing \
&& apt-get -y upgrade \
Expand All @@ -43,7 +43,7 @@ RUN /go/src/github.com/bishopfox/sliver/go-tests.sh

# STAGE: production
## Final dockerized form of Sliver
FROM debian:bookworm-slim as production
FROM debian:bookworm-slim AS production

### Install production packages
RUN apt-get update --fix-missing \
Expand Down
6 changes: 3 additions & 3 deletions go-assets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ set -e

# Creates the static go asset archives

GO_VER="1.22.2"
GARBLE_VER="1.22.2"
ZIG_VER="0.12.0"
GO_VER="1.22.5"
GARBLE_VER="1.22.5"
ZIG_VER="0.13.0"
SGN_VER="0.0.3"

BLOAT_FILES="AUTHORS CONTRIBUTORS PATENTS VERSION favicon.ico robots.txt SECURITY.md CONTRIBUTING.md LICENSE README.md ./doc ./test ./api ./misc"
Expand Down

0 comments on commit c58cb2d

Please sign in to comment.