This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2021-11-09 17:04:05 +00:00
|
|
|
FROM golang:1.17
|
|
|
|
LABEL maintainer="SkynetLabs <devs@siasky.net>"
|
|
|
|
|
|
|
|
ENV GOOS linux
|
|
|
|
ENV GOARCH amd64
|
|
|
|
|
|
|
|
ARG branch=main
|
|
|
|
|
|
|
|
WORKDIR /root
|
|
|
|
|
|
|
|
RUN git clone --single-branch --branch ${branch} https://github.com/SkynetLabs/malware-scanner.git && \
|
|
|
|
cd malware-scanner && \
|
|
|
|
go mod download && \
|
|
|
|
make release
|
|
|
|
|
2021-11-10 20:09:16 +00:00
|
|
|
ARG SKYNET_DB_HOST=localhost
|
|
|
|
ARG SKYNET_DB_PORT=27017
|
|
|
|
ARG SKYNET_DB_USER=username
|
|
|
|
ARG SKYNET_DB_PASS=password
|
|
|
|
ARG MALWARE_SCANNER_PORT=4000
|
2021-11-09 17:04:05 +00:00
|
|
|
|
|
|
|
ENTRYPOINT ["malware-scanner"]
|