File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ build: install
16
16
npm run build
17
17
18
18
image :
19
- docker build -t ${dockerhubUser} /${releaseName} :${tag} --platform=linux -f docker/Dockerfile .
19
+ docker build --no-cache - t ${dockerhubUser} /${releaseName} :${tag} --platform=linux -f docker/Dockerfile .
20
20
21
21
push : image
22
22
docker push ${dockerhubUser} /${releaseName} :${tag}
23
23
24
24
image-aio :
25
- docker build -t ${dockerhubUser} /pixiu-aio:${tag} --platform=linux -f docker/Dockerfile-aio .
25
+ docker build --no-cache - t ${dockerhubUser} /pixiu-aio:${tag} --platform=linux -f docker/Dockerfile-aio .
26
26
27
27
push-aio : image-aio
28
28
docker push ${dockerhubUser} /pixiu-aio:${tag}
Original file line number Diff line number Diff line change @@ -13,9 +13,10 @@ RUN npm config set registry https://registry.npmmirror.com/ && npm install && np
13
13
14
14
FROM nginx:alpine
15
15
LABEL MAINTAINER="PIXIU"
16
+
16
17
COPY --from=builder /build/dist /usr/share/nginx/html/pixiu
17
18
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
18
19
COPY --from=pixiu-builder /app/pixiu /app
19
20
COPY docker/start.sh /usr/local/bin/pixiu_start
20
21
21
- CMD [' pixiu_start' ]
22
+ CMD [" pixiu_start" ]
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
1
2
set -o errexit
2
3
set -o xtrace
3
4
You can’t perform that action at this time.
0 commit comments