Change mv action of client binaries to rsync -a

This commit is contained in:
Scott Dickson
2021-09-16 11:24:49 +10:00
parent 089d3819ce
commit ff1910a3ff
2 changed files with 6 additions and 6 deletions

View File

@@ -1,12 +1,12 @@
FROM ubuntu:18.04
LABEL version="Velociraptor v0.5.1"
LABEL version="Velociraptor v0.6.1"
LABEL description="Velociraptor server in a Docker container"
LABEL maintainer="Wes Lambert, @therealwlambert"
ENV VERSION="0.5.1"
ENV VERSION="0.6.1"
COPY ./entrypoint .
RUN chmod +x entrypoint && \
apt-get update && \
apt-get install -y curl wget jq && \
apt-get install -y curl wget jq rsync && \
# Create dirs for Velo binaries
mkdir -p /opt/velociraptor && \
for i in linux mac windows; do mkdir -p /opt/velociraptor/$i; done && \