Files
abap-test-runner/Dockerfile

13 lines
270 B
Docker
Raw Normal View History

FROM node:lts-alpine
RUN apk add --no-cache git
2021-10-18 13:48:52 +01:00
WORKDIR /opt/test-runner
COPY . .
2021-11-24 06:48:56 +01:00
RUN npm ci
RUN npm run build
RUN npm install @abaplint/cli -g
2021-11-24 06:48:56 +01:00
RUN npm install @abaplint/transpiler-cli -g
RUN npm install @abaplint/runtime -g
ENTRYPOINT ["/opt/test-runner/bin/run.sh"]