2021-12-03 15:04:26 +01:00
|
|
|
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
|
2021-11-25 18:23:15 +01:00
|
|
|
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
|
2021-12-03 15:04:26 +01:00
|
|
|
ENTRYPOINT ["/opt/test-runner/bin/run.sh"]
|