add initial version

This commit is contained in:
thelamer
2023-03-18 12:58:16 -07:00
parent 5d0a11c44c
commit c02e0b7b1d
24 changed files with 2553 additions and 1 deletions

23
Dockerfile.aarch64 Normal file
View File

@@ -0,0 +1,23 @@
FROM ghcr.io/linuxserver/baseimage-kasmvnc:arm64v8-alpine317
# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="thelamer"
RUN \
echo "**** install packages ****" && \
apk add --no-cache \
chromium && \
echo "**** cleanup ****" && \
rm -rf \
/tmp/*
# add local files
COPY /root /
# ports and volumes
EXPOSE 3000
VOLUME /config