mirror of
https://git.myvelabs.com/novnc/archlinux.git
synced 2025-12-17 21:36:20 +00:00
18 lines
398 B
Docker
18 lines
398 B
Docker
# syntax = docker/dockerfile:1
|
|
FROM myvnc/arch/base:i3
|
|
USER root
|
|
|
|
# Build ARG: use "root" for debugging
|
|
ARG debug
|
|
|
|
# Install packages
|
|
RUN --mount=type=cache,sharing=locked,target=/var/cache/pacman \
|
|
pacman -Syu --ask 4 --needed \
|
|
firefox firefox-decentraleyes firefox-ublock-origin \
|
|
&& pacman -Scc --ask 4
|
|
|
|
# Tigervnc
|
|
COPY *.sh /app/init.d/
|
|
|
|
# Default environment
|
|
USER ${debug:-user}
|