skywalking/test/e2e/e2e-test/docker/browser/with-skywalking-client-js/Dockerfile.test-ui

50 lines
2.0 KiB
Docker

# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM node:10.23 AS builder
## download and build skywalking client js
ARG CLIENT_JS_COMMIT_HASH=c2e31438f9beef7161c7b6f630694a501e774671
ARG CLIENT_JS_CODE=${CLIENT_JS_COMMIT_HASH}.tar.gz
ARG CLIENT_JS_CODE_URL=https://github.com/apache/skywalking-client-js/archive/${CLIENT_JS_CODE}
WORKDIR /skywalking-client-js
ADD ${CLIENT_JS_CODE_URL} .
RUN tar -xf ${CLIENT_JS_CODE} --strip 1 && rm ${CLIENT_JS_CODE}
RUN sed -in-place -e 's/60000/3000/g' src/trace/segment.ts \
&& npm run rebuild \
&& npm link
# download and build skywalking client test
ARG CLIENT_JS_TEST_COMMIT_HASH=4f1eb1dcdbde3ec4a38534bf01dded4ab5d2f016
ARG CLIENT_JS_TEST_CODE=${CLIENT_JS_TEST_COMMIT_HASH}.tar.gz
ARG CLIENT_JS_TEST_CODE_URL=https://github.com/SkyAPMTest/skywalking-client-test/archive/${CLIENT_JS_TEST_CODE}
WORKDIR /skywalking-client-test
ADD ${CLIENT_JS_TEST_CODE_URL} .
RUN tar -xf ${CLIENT_JS_TEST_CODE} --strip 1 \
&& rm ${CLIENT_JS_TEST_CODE} \
&& rm src/index.js
COPY with-skywalking-client-js/index.js src/index.js
RUN npm install \
&& rm -rf node_modules/skywalking-client-js \
&& npm link skywalking-client-js \
&& npm run build
FROM nginx:1.19
COPY --from=builder /skywalking-client-test/dist/* /etc/nginx/html/
COPY with-skywalking-client-js/nginx.conf /etc/nginx/nginx.conf