|
|
@@ -18,13 +18,11 @@ RUN curl -s https://api.github.com/repos/nexus-xyz/nexus-cli/releases/latest | \
|
|
|
xargs -I {} curl -L -o ${BIN_DIR}/nexus-network {} && \
|
|
|
chmod +x ${BIN_DIR}/nexus-network
|
|
|
|
|
|
-FROM ubuntu:24.04-slim
|
|
|
+FROM alpine:latest
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
-RUN apt-get update && apt-get install -y \
|
|
|
- curl \
|
|
|
- && rm -rf /var/lib/apt/lists/*
|
|
|
+RUN apk update && apk add --no-cache curl
|
|
|
|
|
|
ENV NEXUS_HOME=/root/.nexus
|
|
|
ENV BIN_DIR=/root/.nexus/bin
|