asd / Dockerfile
suertang's picture
Upload Dockerfile
3b040ec verified
Raw
History Blame Contribute Delete
412 Bytes
FROM golang:1.21 AS builder
ENV CGO_ENABLED=0
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/renqabs/aa.git /app
WORKDIR /app
RUN go mod download
RUN go build -o /app/aurora .
FROM alpine:latest
WORKDIR /app
COPY --from=builder /app/aurora /app/aurora
COPY --from=builder /app/harPool /app/harPool
ENV BASE_URL=https://www.openai-proxy.com/
EXPOSE 8080
CMD ["./aurora"]