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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

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

Check failure on line 8 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 @@ -25,7 +25,7 @@

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

Check failure on line 28 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 @@ -53,7 +53,7 @@
RUN pnpm run build

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

Check failure on line 56 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 @@ -65,7 +65,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 68 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 All @@ -88,8 +88,8 @@
chmod +x /usr/local/bin/mkcert

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

Check failure on line 92 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 @@ -122,7 +122,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.1.4
ENV ADMIN_VERSION=1.1.5

# Environment variables that can be set at runtime:
# NSELF_PROJECT_PATH - Path to mounted project (default: /workspace)
Expand All @@ -132,7 +132,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.1.4"
LABEL org.opencontainers.image.version="1.1.5"
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.1.4",
"version": "1.1.5",
"private": false,
"description": "Web-based administration interface for nself CLI backend stack",
"license": "SEE LICENSE IN LICENSE",
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.1.4'
export const CLI_VERSION = '1.1.5'
Loading