rm old unused Docker stuff (#6620)

This commit is contained in:
Lars Hvam 2023-11-03 18:20:34 +01:00 committed by GitHub
parent 5b9c8b1e32
commit dd3b66981d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 34 deletions

View File

@ -10,11 +10,7 @@
"coverage": "npm run unit && c8 node output/index.mjs && c8 report --reporter=html",
"integration": "rm -rf output && cp test/abap_transpile.json test/abap_transpile_int.json && sed -i 's/zcl_abapgit_auth/zcl_abapgit_integration_git/g' test/abap_transpile_int.json && abap_transpile test/abap_transpile_int.json && echo RUNNING && node output/index.mjs",
"abaplint": "abaplint --format codeframe",
"eslint": "eslint src",
"docker-build": "docker-compose -f test/docker-compose.yml build",
"docker-up": "docker-compose -f test/docker-compose.yml up",
"docker-unit": "docker-compose -f test/docker-compose.yml run --workdir=\"/home/node/abapGit\" abapgit npm run-script unit",
"docker-down": "docker-compose -f test/docker-compose.yml down"
"eslint": "eslint src"
},
"repository": {
"type": "git",

View File

@ -1,8 +0,0 @@
FROM node
ARG TINI_VERSION=v0.19.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /usr/local/bin/tini
RUN chmod a+x /usr/local/bin/tini
ENTRYPOINT ["/usr/local/bin/tini", "--"]

View File

@ -1,21 +0,0 @@
version: '3.4'
services:
abapgit:
image: abapgit
build:
context: .
dockerfile: ./Dockerfile
environment:
NODE_ENV: development
networks:
default:
volumes:
- ..:/home/node/abapGit
# links:
# - httpEndpoint:httpbin.com
# depends_on:
# - httpEndpoint
# httpEndpoint:
# image: hashicorp/http-echo
# command: -text="Hello World" -listen=:80