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