FROM golang:1.24

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

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

EXPOSE 1323
CMD ["server"]
