build: Initial Dockerfile (#3)

This commit is contained in:
Kroese 2024-01-14 14:41:19 +01:00 committed by GitHub
parent 3f70a9b7c3
commit 945b53a86b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 0 deletions

11
.dockerignore Normal file
View File

@ -0,0 +1,11 @@
.dockerignore
.git
.github
.gitignore
.gitlab-ci.yml
.gitmodules
Dockerfile
Dockerfile.archive
docker-compose.yml
*.md

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@

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"]