mirror of
https://github.com/house-of-vanity/khm.git
synced 2025-08-21 14:27:14 +00:00
14 lines
282 B
Docker
14 lines
282 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM ubuntu:22.04
|
|
|
|
# Install basic runtime dependencies
|
|
RUN apt-get update && apt-get install -y \
|
|
ca-certificates \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY khm /usr/local/bin/khm
|
|
RUN chmod +x /usr/local/bin/khm
|
|
|
|
ENTRYPOINT ["/usr/local/bin/khm"]
|