Files
lettersoup-online/003_test/002_mobile/01_test_seat/dockerfile
2025-05-16 11:13:50 +08:00

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