Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/wiki/Home.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# nself Admin Documentation

Version 1.3.6 · MIT License · Docker-ready
Version 1.4.0 · MIT License · Docker-ready

**The web UI for the nself CLI. Manage your self-hosted backend stack from a browser.**

Expand Down Expand Up @@ -92,7 +92,7 @@ Version 1.3.6 · MIT License · Docker-ready

## Current Version

**v1.3.6** - See [CHANGELOG](CHANGELOG) for details.
**v1.4.0** - See [CHANGELOG](CHANGELOG) for details.

## License

Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
FROM --platform=$BUILDPLATFORM golang:1.27-alpine AS mkcert-builder
ARG TARGETOS
ARG TARGETARCH
RUN apk add --no-cache git

Check failure on line 21 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3018 warning: Pin versions in apk add. Instead of `apk add <package>` use `apk add <package>=<version>`
RUN git clone --depth 1 --branch v1.4.4 https://github.com/FiloSottile/mkcert /src

Check failure on line 22 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.
WORKDIR /src
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
go build -trimpath -ldflags "-s -w" -o /out/mkcert .
Expand All @@ -31,7 +31,7 @@

# Stage 1: Dependencies
FROM node:22-alpine AS deps
RUN apk add --no-cache libc6-compat

Check failure on line 34 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3018 warning: Pin versions in apk add. Instead of `apk add <package>` use `apk add <package>=<version>`
RUN corepack enable && corepack prepare pnpm@10.28.0 --activate
WORKDIR /app

Expand All @@ -51,7 +51,7 @@

# Stage 2: Builder
FROM node:22-alpine AS builder
RUN apk add --no-cache libc6-compat

Check failure on line 54 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3018 warning: Pin versions in apk add. Instead of `apk add <package>` use `apk add <package>=<version>`
RUN corepack enable && corepack prepare pnpm@10.28.0 --activate
WORKDIR /app

Expand Down Expand Up @@ -79,7 +79,7 @@
RUN pnpm run build

# Remove dev dependencies to reduce image size
RUN pnpm prune --prod

Check failure on line 82 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.

# Stage 3: Runner (minimal image)
FROM node:22-alpine AS runner
Expand All @@ -91,7 +91,7 @@
# - curl, git: Required by nself commands
# - openssl, nss-tools: For SSL certificate management
# - mkcert: For local SSL certificates (installed separately)
RUN apk add --no-cache \

Check failure on line 94 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3018 warning: Pin versions in apk add. Instead of `apk add <package>` use `apk add <package>=<version>`
bash \
curl \
git \
Expand Down Expand Up @@ -120,8 +120,8 @@
RUN chmod +x /usr/local/bin/mkcert

# Install nself CLI pre-built binary
ARG NSELF_VERSION=1.3.6
ARG NSELF_VERSION=1.4.0
RUN ARCH=$(uname -m) && \

Check failure on line 124 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL4006 warning: Set the SHELL option -o pipefail before RUN with a pipe in it. If you are using /bin/sh in an alpine image or if your shell is symlinked to busybox then consider explicitly setting your SHELL to /bin/ash, or disable this check
if [ "$ARCH" = "x86_64" ]; then NSELF_ARCH="amd64"; \
elif [ "$ARCH" = "aarch64" ]; then NSELF_ARCH="arm64"; \
else NSELF_ARCH="amd64"; fi && \
Expand Down Expand Up @@ -154,7 +154,7 @@
ENV HOSTNAME="0.0.0.0"
# Port 3021 is the reserved port for nself-admin (not 3100, which is for Loki)
ENV PORT=3021
ENV ADMIN_VERSION=1.3.6
ENV ADMIN_VERSION=1.4.0

# Environment variables that can be set at runtime:
# NSELF_PROJECT_PATH - Path to mounted project (default: /workspace)
Expand All @@ -164,7 +164,7 @@
# Add labels for container metadata
LABEL org.opencontainers.image.title="nself-admin"
LABEL org.opencontainers.image.description="Web-based administration interface for nself CLI"
LABEL org.opencontainers.image.version="1.3.6"
LABEL org.opencontainers.image.version="1.4.0"
LABEL org.opencontainers.image.vendor="nself.org"
LABEL org.opencontainers.image.source="https://github.com/nself-org/admin"
LABEL org.opencontainers.image.licenses="Proprietary - Free for personal use, Commercial license required"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nself-admin",
"version": "1.3.6",
"version": "1.4.0",
"private": false,
"description": "Web-based administration interface for nself CLI backend stack",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/cli-version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
*
* To update: bump all three files atomically as part of the release process.
*/
export const CLI_VERSION = '1.3.6'
export const CLI_VERSION = '1.4.0'
Loading