mirror of
https://github.com/outbackdingo/labca.git
synced 2026-01-27 02:19:27 +00:00
11 lines
191 B
Plaintext
11 lines
191 B
Plaintext
# syntax=docker/dockerfile:1
|
|
FROM ubuntu:noble
|
|
|
|
ARG TARGETARCH
|
|
|
|
COPY labca-gui*.deb /tmp/
|
|
|
|
RUN dpkg -i /tmp/labca-gui_*_$TARGETARCH.deb
|
|
|
|
CMD ["labca-gui", "-config", "/usr/data/config.json"]
|