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.
2020-12-10 17:52:50 +00:00
|
|
|
FROM golang:1.15
|
|
|
|
LABEL maintainer="NebulousLabs <devs@nebulous.tech>"
|
|
|
|
|
|
|
|
ENV GOOS linux
|
|
|
|
ENV GOARCH amd64
|
|
|
|
|
|
|
|
WORKDIR /root
|
|
|
|
|
2021-01-08 11:04:15 +00:00
|
|
|
RUN git clone --single-branch --branch ivo/uploads_and_downloads https://github.com/NebulousLabs/skynet-accounts.git && \
|
|
|
|
cd skynet-accounts && \
|
|
|
|
go mod download && \
|
|
|
|
make release
|
2020-12-10 17:52:50 +00:00
|
|
|
|
|
|
|
ENV SKYNET_DB_HOST="localhost"
|
|
|
|
ENV SKYNET_DB_PORT="27017"
|
|
|
|
ENV SKYNET_DB_USER="username"
|
|
|
|
ENV SKYNET_DB_PASS="password"
|
|
|
|
ENV SKYNET_ACCOUNTS_PORT=3000
|
|
|
|
|
|
|
|
ENTRYPOINT ["skynet-accounts"]
|