From d64f3f39122fce334dba8ec33daae7e889dae7cb Mon Sep 17 00:00:00 2001 From: Ulysses Souza Date: Tue, 21 Apr 2020 11:04:10 +0200 Subject: [PATCH] Remove unused files Signed-off-by: Ulysses Souza --- .fossa.yml | 14 -------------- Dockerfile.s390x | 15 --------------- 2 files changed, 29 deletions(-) delete mode 100644 .fossa.yml delete mode 100644 Dockerfile.s390x diff --git a/.fossa.yml b/.fossa.yml deleted file mode 100644 index b50761ef1..000000000 --- a/.fossa.yml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated by FOSSA CLI (https://github.com/fossas/fossa-cli) -# Visit https://fossa.io to learn more - -version: 2 -cli: - server: https://app.fossa.io - fetcher: custom - project: git@github.com:docker/compose -analyze: - modules: - - name: . - type: pip - target: . - path: . diff --git a/Dockerfile.s390x b/Dockerfile.s390x deleted file mode 100644 index 9bae72d67..000000000 --- a/Dockerfile.s390x +++ /dev/null @@ -1,15 +0,0 @@ -FROM s390x/alpine:3.10.1 - -ARG COMPOSE_VERSION=1.16.1 - -RUN apk add --update --no-cache \ - python \ - py-pip \ - && pip install --no-cache-dir docker-compose==$COMPOSE_VERSION \ - && rm -rf /var/cache/apk/* - -WORKDIR /data -VOLUME /data - - -ENTRYPOINT ["docker-compose"]