Skip to content

Commit

Permalink
Added spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
BreathXV committed Jun 5, 2024
1 parent 0657550 commit 04295a6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile.test
Original file line number Diff line number Diff line change
@@ -1,15 +1,29 @@
FROM golang:1.22.3 as builder

WORKDIR /ReforgerWhitelistAPI

COPY go.mod go.sum ./

RUN go mod tidy

COPY . .

RUN go build -o ReforgerWhitelistAPI ./cmd/api

FROM alpine:latest

RUN apk --no-cache add ca-certificates curl jq

WORKDIR /root/

COPY --from=builder /ReforgerWhitelistAPI/ReforgerWhitelistAPI .

COPY ./utils/test.sh .

ENV DATABASE_PATH :memory:

EXPOSE 8080

RUN chmod +x utils/test.sh

CMD ["sh", "./test.sh"]

0 comments on commit 04295a6

Please sign in to comment.