From 547b40e262488df758e17cede35df2e7ba1082a8 Mon Sep 17 00:00:00 2001 From: weslambert Date: Tue, 27 Oct 2020 07:21:35 -0400 Subject: [PATCH] Bump to 0.5.1 --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3df9fc3..a86e049 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM ubuntu:18.04 -LABEL version="Velociraptor v0.5.0-1" +LABEL version="Velociraptor v0.5.1" LABEL description="Velociraptor server in a Docker container" LABEL maintainer="Wes Lambert, @therealwlambert" -ENV VERSION="0.5.0-1" +ENV VERSION="0.5.1" COPY ./entrypoint . RUN chmod +x entrypoint && \ apt-get update && \ @@ -11,10 +11,10 @@ RUN chmod +x entrypoint && \ mkdir -p /opt/velociraptor && \ for i in linux mac windows; do mkdir -p /opt/velociraptor/$i; done && \ # Get Velox binaries - wget -O /opt/velociraptor/linux/velociraptor https://github.com/Velocidex/velociraptor/releases/download/v$VERSION/velociraptor-v$VERSION-linux-amd64 && \ + wget -O /opt/velociraptor/linux/velociraptor https://github.com/Velocidex/velociraptor/releases/download/v$VERSION/velociraptor-v$VERSION-1-linux-amd64 && \ wget -O /opt/velociraptor/mac/velociraptor_client https://github.com/Velocidex/velociraptor/releases/download/v$VERSION/velociraptor-v$VERSION-darwin-amd64 && \ - wget -O /opt/velociraptor/windows/velociraptor_client.exe https://github.com/Velocidex/velociraptor/releases/download/v$VERSION/velociraptor-v$VERSION-windows-amd64.exe && \ - wget -O /opt/velociraptor/windows/velociraptor_client.msi https://github.com/Velocidex/velociraptor/releases/download/v$VERSION/velociraptor-v$VERSION-windows-amd64.msi && \ + wget -O /opt/velociraptor/windows/velociraptor_client.exe https://github.com/Velocidex/velociraptor/releases/download/v$VERSION/velociraptor-v$VERSION-1-windows-amd64.exe && \ + wget -O /opt/velociraptor/windows/velociraptor_client.msi https://github.com/Velocidex/velociraptor/releases/download/v$VERSION/velociraptor-v$VERSION-1-windows-amd64.msi && \ # Clean up apt-get remove -y --purge wget && \ apt-get clean