Create Dockerfile

This commit is contained in:
Kroese 2024-01-14 14:40:47 +01:00 committed by GitHub
parent abce5e17cc
commit a7a556d424
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

26
Dockerfile Normal file
View file

@ -0,0 +1,26 @@
FROM qemus:qemu-docker
ARG DEBCONF_NOWARNINGS="yes"
ARG DEBIAN_FRONTEND "noninteractive"
ARG DEBCONF_NONINTERACTIVE_SEEN "true"
RUN apt-get update \
&& apt-get --no-install-recommends -y install \
novnc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
COPY ./src /run/
RUN chmod +x /run/*.sh
EXPOSE 8006
VOLUME /storage
ENV CPU_CORES "1"
ENV RAM_SIZE "4G"
ENV DISK_SIZE "64G"
ARG VERSION_ARG "0.0"
RUN echo "$VERSION_ARG" > /run/version
ENTRYPOINT ["/usr/bin/tini", "-s", "/run/init.sh"]