mirror of
https://github.com/dockur/windows.git
synced 2025-10-27 11:25:49 +00:00
Create Dockerfile
This commit is contained in:
parent
abce5e17cc
commit
a7a556d424
1 changed files with 26 additions and 0 deletions
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…
Add table
Add a link
Reference in a new issue