mirror of
https://github.com/dockur/windows.git
synced 2024-11-15 01:34:41 +00:00
build: Initial Dockerfile (#3)
This commit is contained in:
parent
3f70a9b7c3
commit
945b53a86b
11
.dockerignore
Normal file
11
.dockerignore
Normal 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
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
26
Dockerfile
Normal file
26
Dockerfile
Normal 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"]
|
Loading…
Reference in New Issue
Block a user