feature/sleep-for-ever (#6)
Reviewed-on: #6
This commit was merged in pull request #6.
	This commit is contained in:
		@@ -8,5 +8,5 @@ indent_style = space
 | 
				
			|||||||
indent_size = 2
 | 
					indent_size = 2
 | 
				
			||||||
end_of_line = lf
 | 
					end_of_line = lf
 | 
				
			||||||
charset = utf-8
 | 
					charset = utf-8
 | 
				
			||||||
trim_trailing_whitespace = false
 | 
					trim_trailing_whitespace = true
 | 
				
			||||||
insert_final_newline = false
 | 
					insert_final_newline = true
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -16,7 +16,7 @@ jobs:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  build:
 | 
					  build:
 | 
				
			||||||
    runs-on: k3s
 | 
					    runs-on: k3s
 | 
				
			||||||
    needs: Dockerfile lint
 | 
					    # needs: Dockerfile lint # lets process faster pull-requests
 | 
				
			||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
      - uses: actions/checkout@v3
 | 
					      - uses: actions/checkout@v3
 | 
				
			||||||
      - name: Kaniko build
 | 
					      - name: Kaniko build
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										9
									
								
								.vscode/extensions.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								.vscode/extensions.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,9 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					  // See https://go.microsoft.com/fwlink/?LinkId=827846
 | 
				
			||||||
 | 
					  // for the documentation about the extensions.json format
 | 
				
			||||||
 | 
					  "recommendations": [
 | 
				
			||||||
 | 
					    "EditorConfig.EditorConfig",
 | 
				
			||||||
 | 
					    // Code formatter using prettier
 | 
				
			||||||
 | 
					    "esbenp.prettier-vscode"
 | 
				
			||||||
 | 
					  ]
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										5
									
								
								.vscode/settings.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								.vscode/settings.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					  "editor.defaultFormatter": "esbenp.prettier-vscode",
 | 
				
			||||||
 | 
					  "editor.formatOnSave": true,
 | 
				
			||||||
 | 
					  "editor.formatOnPaste": false
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@@ -1,7 +1,9 @@
 | 
				
			|||||||
# https://hub.docker.com/_/alpine
 | 
					# https://hub.docker.com/_/alpine
 | 
				
			||||||
 | 
					# https://endoflife.date/alpine
 | 
				
			||||||
FROM alpine:3.18
 | 
					FROM alpine:3.18
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN apk update && \
 | 
					RUN apk update && \
 | 
				
			||||||
  apk add --no-cache nano mc micro rsync ncdu git curl
 | 
					  apk add --no-cache nano mc micro rsync ncdu git curl openssh-client
 | 
				
			||||||
 | 
					 | 
				
			||||||
COPY ./bin/ /usr/local/bin
 | 
					COPY ./bin/ /usr/local/bin
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ENTRYPOINT ["sleep", "infinity"]
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user