-
Notifications
You must be signed in to change notification settings - Fork 92
/
Dockerfile
74 lines (55 loc) · 1.9 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#
# 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.
#
### BUILDER LAYER
FROM golang:1.20-alpine AS BE
WORKDIR /app
COPY ./go.mod ./
COPY ./go.sum ./
RUN go mod download
COPY . .
RUN mkdir ./bin && \
go build -ldflags "-X main.Version=`cat VERSION` -extldflags \"-static\" -s -w" -o ./bin/arana ./cmd/arana
### UI LAYER
FROM node:16-alpine as FE
RUN apk add --no-cache git
# specify git revision for arana-db/arana-ui repo
ARG UI_REVISION="6ec7d61"
WORKDIR /arana-ui
RUN git clone -n https://github.com/arana-db/arana-ui.git /arana-ui && \
git checkout $UI_REVISION && \
yarn && yarn build
### RUNTIME LAYER
FROM alpine:3
ENV ARANA_LOG_PATH=/var/log/arana \
ARANA_LOG_LEVEL=INFO \
ARANA_LOG_MAX_SIZE=128MB \
ARANA_LOG_MAX_BACKUPS=3 \
ARANA_LOG_MAX_AGE=7 \
ARANA_LOG_COMPRESS=false \
ARANA_LOG_CONSOLE=true \
ARANA_LOG_SQL=false
WORKDIR /
RUN mkdir -p /etc/arana /var/www/arana /var/log/arana
VOLUME /etc/arana
VOLUME /var/www/arana
VOLUME /var/log/arana
EXPOSE 13306
EXPOSE 8080
COPY ./conf/* /etc/arana/
COPY --from=BE /app/bin/arana /usr/local/bin/
COPY --from=FE /arana-ui/dist/* /var/www/arana/
CMD ["arana", "start", "-c", "/etc/arana/bootstrap.yaml"]