FROM golang:1.23

WORKDIR /app
COPY . .
RUN echo "" > .env

RUN go get -v .
RUN go install -v .

CMD ["server"]
