Skip to content

Commit 3f9e92f

Browse files
zhouzhuojieSasso
authored andcommitted
Revert "Change to alpine to save 500+ MB image size (#125)" (#128)
This reverts commit 2ceaf0d.
1 parent 2ceaf0d commit 3f9e92f

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

Dockerfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
FROM alpine
2-
3-
RUN apk update && apk add git go go-tools nodejs nodejs-npm build-base libgit2-dev
1+
FROM finalduty/archlinux:monthly
42

53
ARG NODE_ENV=production
64
ENV NODE_ENV=${NODE_ENV}
@@ -11,6 +9,9 @@ ENV PATH ${PATH}:/go/bin
119
RUN mkdir -p $APP_PATH
1210
WORKDIR $APP_PATH
1311

12+
RUN pacman -Syu --noconfirm
13+
RUN pacman -Sy --noconfirm libgit2 git gcc nodejs go go-tools npm base-devel
14+
1415
RUN go get github.com/cespare/reflex
1516
RUN npm install gitbook-cli -g
1617

docker-compose.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- "${DOCKER_COMPOSE_MONGODB_PORT}:27017"
1111
server:
1212
command: reflex -c reflex.conf
13-
image: codeflow:v005
13+
image: codeflow:v004
1414
build:
1515
context: .
1616
args:
@@ -29,7 +29,7 @@ services:
2929
- "mongo"
3030
dashboard:
3131
command: npm run start
32-
image: codeflow:v005
32+
image: codeflow:v004
3333
build:
3434
context: .
3535
args:
@@ -46,7 +46,7 @@ services:
4646
- ./dashboard/.env.development
4747
docs:
4848
command: gitbook serve
49-
image: codeflow:v005
49+
image: codeflow:v004
5050
build:
5151
context: .
5252
args:

server/configs/codeflow.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ plugins:
6565
registry_password: ""
6666
registry_user_email: ""
6767
docker_host: "unix:///var/run/docker.sock"
68-
workdir: "/tmp/docker_build"
68+
workdir: "/tmp/docker_build"
6969
kubedeploy:
7070
workers: 1
7171
kubeconfig:
72-
environment:
72+
environment:
7373
ssl_cert_arn:
74-
node_selector:
75-
access_log_s3_bucket:
74+
node_selector:
75+
access_log_s3_bucket:
7676
websockets:
7777
workers: 1
7878
service_address: ":3003"
@@ -81,7 +81,7 @@ plugins:
8181
webhook_url: ""
8282
git_sync:
8383
workers: 1
84-
workdir: "/tmp/git_sync"
84+
workdir: "/tmp/git_sync"
8585
heartbeat:
8686
workers: 1
8787
route53:

0 commit comments

Comments
 (0)