no need to build sqlite and add nightly for alpine
This commit is contained in:
		
							parent
							
								
									4591adc05e
								
							
						
					
					
						commit
						1c8b3ce451
					
				
					 3 changed files with 2 additions and 15 deletions
				
			
		|  | @ -2,13 +2,6 @@ | |||
| FROM node:14-buster-slim AS build | ||||
| WORKDIR /app | ||||
| 
 | ||||
| # split the sqlite install here, so that it can caches the arm prebuilt | ||||
| # do not modify it, since we don't want to re-compile the arm prebuilt again | ||||
| RUN apt update && \ | ||||
|     apt --yes install python3 python3-pip python3-dev git g++ make && \ | ||||
|     ln -s /usr/bin/python3 /usr/bin/python && \ | ||||
|     npm install mapbox/node-sqlite3#593c9d --build-from-source | ||||
| 
 | ||||
| COPY . . | ||||
| RUN npm install --legacy-peer-deps && \ | ||||
|     npm run build && \ | ||||
|  | @ -16,7 +9,7 @@ RUN npm install --legacy-peer-deps && \ | |||
|     chmod +x /app/extra/entrypoint.sh | ||||
| 
 | ||||
| 
 | ||||
| FROM node:14-bullseye-slim AS release | ||||
| FROM node:14-buster-slim AS release | ||||
| WORKDIR /app | ||||
| 
 | ||||
| # Install Apprise, add sqlite3 cli for debugging in the future, iputils-ping for ping, util-linux for setpriv | ||||
|  |  | |||
|  | @ -2,13 +2,6 @@ | |||
| FROM node:14-alpine3.12 AS build | ||||
| WORKDIR /app | ||||
| 
 | ||||
| # split the sqlite install here, so that it can caches the arm prebuilt | ||||
| RUN apk add --no-cache --virtual .build-deps make g++ python3 python3-dev git && \ | ||||
|     ln -s /usr/bin/python3 /usr/bin/python && \ | ||||
|     npm install mapbox/node-sqlite3#593c9d && \ | ||||
|     apk del .build-deps && \ | ||||
|     rm -f /usr/bin/python | ||||
| 
 | ||||
| COPY . . | ||||
| RUN npm install --legacy-peer-deps && \ | ||||
|     npm run build && \ | ||||
|  |  | |||
|  | @ -24,6 +24,7 @@ | |||
|         "build-docker-alpine": "docker buildx build -f dockerfile-alpine --platform linux/amd64,linux/arm64,linux/arm/v7 -t louislam/uptime-kuma:alpine -t louislam/uptime-kuma:1-alpine -t louislam/uptime-kuma:1.6.0-alpine --target release . --push", | ||||
|         "build-docker-debian": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t louislam/uptime-kuma -t louislam/uptime-kuma:1 -t louislam/uptime-kuma:1.6.0 -t louislam/uptime-kuma:debian -t louislam/uptime-kuma:1-debian -t louislam/uptime-kuma:1.6.0-debian --target release . --push", | ||||
|         "build-docker-nightly": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t louislam/uptime-kuma:nightly --target nightly . --push", | ||||
|         "build-docker-nightly-alpine": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t louislam/uptime-kuma:nightly-alpine --target nightly . --push", | ||||
|         "build-docker-nightly-amd64": "docker buildx build --platform linux/amd64 -t louislam/uptime-kuma:nightly-amd64 --target nightly . --push --progress plain", | ||||
|         "setup": "git checkout 1.6.0 && npm install --legacy-peer-deps && node node_modules/esbuild/install.js && npm run build && npm prune", | ||||
|         "update-version": "node extra/update-version.js", | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue