Commit d7faf4cd authored by Kroese's avatar Kroese Committed by GitHub
Browse files

Dockerfile

Dockerfile
parents 0881c3ca 397e1551
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -7,10 +7,12 @@ on:
      - master
    paths-ignore:
      - '**/*.md'
      - '**/*.yml'
      - '.gitignore'
      - '.dockerignore'
      - '.github/**'
      - '.github/workflows/**'
      - 'Dockerfile'
      
jobs:
  shellcheck:
+4 −3
Original line number Diff line number Diff line
@@ -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