simpbot/Containerfile
Steve 057c9f1d99
All checks were successful
continuous-integration/drone/push Build is passing
add containerfile, use accountdatastore
2022-08-07 14:57:09 -04:00

14 lines
334 B
Docker

FROM golang:1.18 as builder
WORKDIR /go/src/app
COPY . .
RUN apt update && apt upgrade -y
RUN go build
FROM alpine:latest as final
WORKDIR /srv/
RUN mkdir /srv/simpbot
RUN mkdir /lib64 && ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2
COPY --from=builder /go/src/app/simpbot /srv/simpbot/
CMD ["/srv/simpbot/simpbot"]