1
0
mirror of https://gitea.com/Sirherobrine23/tea.git synced 2024-07-02 12:54:24 -03:00
tea/Dockerfile
2023-09-10 00:35:56 -04:00

11 lines
239 B
Docker

FROM cgr.dev/chainguard/go:latest AS buildenv
COPY . /build/
WORKDIR /build
RUN make clean build STATIC=true
FROM cgr.dev/chainguard/static:latest
COPY --from=buildenv /build/tea /tea
VOLUME [ "/app" ]
ENV HOME="/app"
ENTRYPOINT ["/tea"]