28 lines
525 B
Plaintext
28 lines
525 B
Plaintext
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
|