diff options
author | Emiliano Ciavatta | 2020-09-30 21:14:08 +0000 |
---|---|---|
committer | Emiliano Ciavatta | 2020-09-30 21:14:08 +0000 |
commit | b4c9f42725356c3f38a39125b339b10fe900d527 (patch) | |
tree | be07bea9b51c632f2766a8cf0721cd42f1197652 /Dockerfile.testing | |
parent | 02996470c0f86fecea49f23b7818a4e7c230a63f (diff) |
Add separate testing dockerfile
Diffstat (limited to 'Dockerfile.testing')
-rw-r--r-- | Dockerfile.testing | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Dockerfile.testing b/Dockerfile.testing new file mode 100644 index 0000000..3498341 --- /dev/null +++ b/Dockerfile.testing @@ -0,0 +1,18 @@ +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 ./caronte |