Files
crawlab/core/Dockerfile
2024-10-29 14:48:35 +08:00

14 lines
183 B
Docker

FROM golang:1.22 AS build
WORKDIR /go/src/app
COPY . .
ENV GO111MODULE on
RUN go install -v ./...
FROM alpine:3.14
# copy files
COPY --from=build /go/bin/crawlab /go/bin/crawlab