Dockerfile

Dockerfile
This commit is contained in:
Kroese 2023-05-12 13:58:16 +02:00 committed by GitHub
commit d7faf4cd35
2 changed files with 7 additions and 4 deletions

View file

@ -7,10 +7,12 @@ on:
- master
paths-ignore:
- '**/*.md'
- '**/*.yml'
- '.gitignore'
- '.dockerignore'
- '.github/**'
- '.github/workflows/**'
- 'Dockerfile'
jobs:
shellcheck:

View file

@ -4,7 +4,7 @@ ARG DEBCONF_NOWARNINGS="yes"
ARG DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get -y upgrade && \
apt-get --no-install-recommends -y install \
apt-get --no-install-recommends -y install \
wget \
procps \
iptables \
@ -14,10 +14,11 @@ RUN apt-get update && apt-get -y upgrade && \
ca-certificates \
netcat-openbsd \
qemu-system-x86 \
&& apt-get clean
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
COPY run/*.sh /run/
RUN ["chmod", "+x", "/run/run.sh"]
RUN chmod +x /run/*.sh
VOLUME /storage