init 003_test,
This commit is contained in:
27
003_test/001_desktop/01_test_seat/dockerfile
Normal file
27
003_test/001_desktop/01_test_seat/dockerfile
Normal file
@@ -0,0 +1,27 @@
|
||||
FROM ghcr.io/linuxserver/baseimage-kasmvnc:ubuntujammy
|
||||
|
||||
# set version label
|
||||
ARG BUILD_DATE
|
||||
ARG VERSION
|
||||
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
||||
LABEL maintainer="thelamer"
|
||||
ARG DEBIAN_FRONTEND="noninteractive"
|
||||
|
||||
# title
|
||||
ENV TITLE=test-seat
|
||||
|
||||
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -qqy wget git curl
|
||||
|
||||
# Set up the working directory
|
||||
WORKDIR /app
|
||||
|
||||
# ports and volumes
|
||||
EXPOSE 3000
|
||||
|
||||
VOLUME /config
|
||||
|
||||
COPY ./setup/ /setup
|
||||
RUN chmod +x /setup/*.sh
|
Reference in New Issue
Block a user