FROM golang:1.21.4

WORKDIR /app

COPY *.go ./
COPY *.mod ./
COPY *.sum ./
COPY routes ./routes
COPY public ./public
COPY templates ./templates

RUN go build . 

ENTRYPOINT ["/app/website"]