websoft9/docker/deployment/Dockerfile
qiaofeng1227 34e1c42a8a release
2024-12-11 14:30:11 +08:00

20 lines
679 B
Docker

# modify time: 202412111429, you can modify here to trigger Docker Build action
# step1: Build entrypoint execute program init_portainer by golang
FROM golang:latest AS builder
WORKDIR /
COPY init_portainer.go /
# CGO_ENABLED=0 can not depend on any dynamic library
RUN CGO_ENABLED=0 go build -o init_portainer /init_portainer.go
RUN chmod +x /init_portainer
# step2: Copy build go program to portainer
# Dockerfile refer to: https://github.com/portainer/portainer/blob/develop/build/linux/Dockerfile
FROM portainer/portainer-ce:2.20.3
LABEL maintainer="websoft9<help@websoft9.com>"
LABEL version="2.20.3"
COPY --from=builder /init_portainer /
ENTRYPOINT ["/init_portainer"]