This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
Corn-Utility/Dockerfile
2023-11-30 23:04:54 +00:00

16 lines
391 B
Docker

FROM golang:1.21-alpine3.18@sha256:110b07af87238fbdc5f1df52b00927cf58ce3de358eeeb1854f10a8b5e5e1411 AS builder
WORKDIR /corn-util
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go build -trimpath ./
FROM alpine:latest@sha256:3a244917cd8d31893d88232d2201755fc9c884fde57a47d148f77edbcc8ad2a6
WORKDIR /home/corn-util
COPY --from=builder /corn-util/bot ./
EXPOSE 23242
CMD ["./bot"]