9 lines
141 B
Docker
9 lines
141 B
Docker
FROM alpine:latest
|
|
|
|
ENV PATH=$PATH:/root/go/bin
|
|
|
|
RUN apk add --update go
|
|
|
|
RUN go install github.com/packwiz/packwiz@latest
|
|
|
|
WORKDIR /modpack
|