Skip to content

Instantly share code, notes, and snippets.

View MShekow's full-sized avatar

Marius Shekow MShekow

View GitHub Profile
@MShekow
MShekow / Dockerfile
Last active May 1, 2025 09:02
Ubuntu Chiseled JRE image (based on OpenJDK) with Springboot Petclinic sample app
ARG UBUNTU_RELEASE=24.04
ARG CHISEL_VERSION=v1.1.0
FROM eclipse-temurin:21-jdk-noble AS build
ADD https://github.com/spring-projects/spring-petclinic.git /app
WORKDIR /app
RUN ./mvnw package
@MShekow
MShekow / renovate.json5
Created July 30, 2023 07:59
Renovate bot configuration template
// Note: we use JSON5 to be able to use comments
// This file is a suggestion for how to customize the default "config:base" preset. The sections below reference
// numbered tips from the cheat sheet in this article: https://www.augmentedmind.de/2023/07/30/renovate-bot-cheat-sheet/
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
// Configure PR assignees (#4)
"assignees": [
#!/bin/bash
# Prepares the macOS VM to be usable from Vagrant
if [[ `id -u` -ne 0 ]] ; then echo "You must run this script as root" ; exit 1 ; fi
set -e
# Enable SSH
systemsetup -setremotelogin on