Skip to content

Commit

Permalink
fix tracee-ebpf dockerfile for go 1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
itaysk committed Mar 16, 2021
1 parent b995873 commit 518d407
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG BASE=fat

FROM golang:alpine as builder
FROM golang:1.16-alpine as builder
RUN apk --no-cache update && apk --no-cache add git clang llvm make gcc libc6-compat coreutils linux-headers musl-dev elfutils-dev libelf-static zlib-static
WORKDIR /tracee

Expand Down
2 changes: 1 addition & 1 deletion tracee-ebpf/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG BASE=fat

FROM golang:alpine as builder
FROM golang:1.16-alpine as builder
RUN apk --no-cache update && apk --no-cache add git clang llvm make gcc libc6-compat coreutils linux-headers musl-dev elfutils-dev libelf-static zlib-static
WORKDIR /tracee

Expand Down

0 comments on commit 518d407

Please sign in to comment.