mirror of
https://github.com/paralus/paralus.git
synced 2026-05-05 16:06:51 +00:00
The initialize script bootstrap application with partner, org, admin account etc. This is going to run as initContainer for primary application container.
8 lines
145 B
Docker
8 lines
145 B
Docker
FROM golang:1.17
|
|
|
|
ENV CGO_ENABLED 0
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN go build -o rcloud-init scripts/initialize/main.go
|
|
ENTRYPOINT ["./rcloud-init"]
|