Files
sealos/service/devbox/Dockerfile
T
BlueBird cbe717043e feat: add devbox service (#5275)
* feat: add devbox service

* fix: fix the golangci-lint error

Signed-off-by: cbluebird <crk2778355976@163.com>

* chore: add devbox in service ci

Signed-off-by: cbluebird <crk2778355976@163.com>

---------

Signed-off-by: cbluebird <crk2778355976@163.com>
2024-12-24 14:28:45 +08:00

7 lines
151 B
Docker

FROM gcr.io/distroless/static:nonroot
ARG TARGETARCH
COPY bin/service-devbox-$TARGETARCH /manager
EXPOSE 8092
USER 65532:65532
ENTRYPOINT ["/manager"]