mirror of
https://github.com/outbackdingo/labca.git
synced 2026-01-27 02:19:27 +00:00
For now, the images are still built on the target machine for testing, in the end they need to be built in a GitHub action.
16 lines
434 B
Plaintext
16 lines
434 B
Plaintext
FROM ubuntu:focal
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
ca-certificates \
|
|
tzdata \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY tmp/labca-gui /opt/labca/bin/
|
|
COPY tmp/nameidtool /opt/labca/
|
|
COPY tmp/admin/setup.sh /opt/labca/
|
|
COPY tmp/admin/apply /opt/labca/
|
|
COPY tmp/admin/apply-boulder /opt/labca/
|
|
COPY tmp/admin/apply-nginx /opt/labca/
|
|
COPY tmp/admin/templates /opt/labca/templates/
|