Skip to content
Open
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
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
FROM ubuntu:24.04
# hl-visor and hl-node are published as x86-64 binaries only, so the image must
# be amd64 regardless of the host. Without this, building on an arm64 host (e.g.
# Apple Silicon) silently produces an arm64 image that cannot exec hl-visor.
FROM --platform=linux/amd64 ubuntu:24.04

ARG USERNAME=hluser
ARG USER_UID=10000
Expand Down