1
1
Fork 0
mirror of https://gitea.com/gitea/tea synced 2024-05-05 23:26:40 +02:00
tea/Dockerfile
2023-09-10 00:50:04 -04:00

11 lines
215 B
Docker

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