diff options
Diffstat (limited to '.github/docker/Dockerfile')
-rw-r--r-- | .github/docker/Dockerfile | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/.github/docker/Dockerfile b/.github/docker/Dockerfile deleted file mode 100644 index 1f9f72d..0000000 --- a/.github/docker/Dockerfile +++ /dev/null @@ -1,18 +0,0 @@ -FROM ubuntu:20.04 - -# Install tools and libraries -RUN apt-get update && \ - DEBIAN_FRONTEND=noninteractive apt-get install -qq golang-1.14 pkg-config libpcap-dev libhyperscan-dev yarnpkg - -COPY ./ /caronte - -WORKDIR /caronte - -RUN ln -sf ../lib/go-1.14/bin/go /usr/bin/go && \ - go mod download && \ - go build && \ - cd frontend && \ - yarnpkg install && \ - yarnpkg build - -CMD go test -v -race -covermode=atomic |