Not Sure Why The Dockerfile Has Issues

This commit is contained in:
Annika Merris 2024-02-02 12:29:29 -05:00
parent 76f4e79efc
commit eed1e3c6c3

View file

@ -4,9 +4,8 @@ WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download && go mod verify
COPY . .
RUN ls .
RUN go build -v -o /isl-api .
COPY . /app
RUN go build -o /isl-api
FROM alpine:3.19.1 AS release