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

16 lines
391 B
Docker
Raw Normal View History

FROM golang:1.21-alpine3.18@sha256:d7d6dd2825586ab8fdb83b66c3a056e79845b1712fa4739062451375b9de328c AS builder
WORKDIR /corn-util
COPY go.mod go.sum ./
RUN go mod download
COPY . .
2023-10-19 18:08:38 -04:00
RUN go build -trimpath ./
2023-10-19 18:08:38 -04:00
FROM alpine:latest@sha256:eece025e432126ce23f223450a0326fbebde39cdf496a85d8c016293fc851978
WORKDIR /home/corn-util
COPY --from=builder /corn-util/bot ./
EXPOSE 23242
CMD ["./bot"]