2023-02-01 23:24:28 +00:00
|
|
|
FROM golang:1.20-alpine
|
2021-02-28 17:04:41 +00:00
|
|
|
|
|
|
|
WORKDIR /usr/src/icedreammusic/
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN cd tunaposter && go build -v .
|
|
|
|
RUN install -v -m0755 -d /target/usr/local/bin/
|
|
|
|
RUN install -v -m0755 tunaposter/tunaposter /target/usr/local/bin/tunaposter
|
|
|
|
|
|
|
|
###
|
|
|
|
|
2023-05-28 09:30:49 +00:00
|
|
|
FROM alpine:3.18
|
2021-02-28 17:04:41 +00:00
|
|
|
|
|
|
|
COPY --from=0 /target/ /
|
|
|
|
|
|
|
|
CMD ["tunaposter"]
|