1
0
mirror of https://gitea.com/gitea/tea.git synced 2024-06-30 06:45:26 +00: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"]