| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # Copyright 1999-2019 Seata.io Group.
- #
- # Licensed 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.
- # the Dockerfile support x86 & arrch64
- # build:
- # 1. mvn -Prelease-seata -Dmaven.test.skip=true clean install -U
- # 2. cd distribution/target/seata-server-xxx/seata/
- # 3. docker build --no-cache --build-arg SEATA_VERSION=1.6.0-SNAPSHOT -t seata-server:1.6.0-dev .
- #
- # run:
- # 1. docker run --name=seata-server -d seata-server:1.6.0-dev
- #
- # https://hub.docker.com/orgs/seataio
- FROM openjdk:8u342
- # set label
- LABEL maintainer="Seata <seata.io>"
- WORKDIR /$BASE_DIR
- # ADD FORM distribution
- ADD bin/ /seata-server/bin
- ADD ext/ /seata-server/ext
- ADD target/ /seata-server/target
- ADD lib/ /seata-server/lib
- ADD conf/ /seata-server/conf
- ADD LICENSE /seata-server/LICENSE
- # set extra environment
- ENV LOADER_PATH="/seata-server/lib"
- CMD ["bash","-c","/seata-server/bin/seata-server.sh && tail -f /dev/null"]
|