mirror of
https://github.com/OwO-Network/DeepLX.git
synced 2024-11-16 17:32:21 +08:00
15 lines
361 B
Docker
15 lines
361 B
Docker
|
# syntax=docker/dockerfile:1
|
||
|
|
||
|
FROM golang:1.19 AS builder
|
||
|
WORKDIR /go/src/github.com/OwO-Network/DeepLX
|
||
|
COPY main.go ./
|
||
|
COPY go.mod ./
|
||
|
COPY go.sum ./
|
||
|
RUN go get -d -v ./
|
||
|
RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o deeplx .
|
||
|
|
||
|
FROM alpine:latest
|
||
|
WORKDIR /app
|
||
|
COPY --from=builder /go/src/github.com/OwO-Network/DeepLX/deeplx /app/deeplx
|
||
|
CMD ["/app/deeplx"]
|