Unverified Commit 945b53a8 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

build: Initial Dockerfile (#3)

parent 3f70a9b7
Loading
Loading
Loading
Loading

.dockerignore

0 → 100644
+11 −0
Original line number Diff line number Diff line
.dockerignore
.git
.github
.gitignore
.gitlab-ci.yml
.gitmodules
Dockerfile
Dockerfile.archive
docker-compose.yml

*.md

.gitignore

0 → 100644
+1 −0
Original line number Diff line number Diff line

Dockerfile

0 → 100644
+26 −0
Original line number Diff line number Diff line
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"]