tmpchat / cmd / frontend / Dockerfile

@ 5c2b3b97f04eb8e24e21af12360ebf9c8f32750a | history


FROM golang:1.19-alpine as builder
WORKDIR /build
COPY . .
RUN go build  -o tmpchat_frontend cmd/frontend/*.go

FROM alpine
COPY --from=builder /build/tmpchat_frontend /
COPY --from=builder /build/cmd/frontend/templates /templates
CMD ["/tmpchat_frontend"]