Skip to content

Instantly share code, notes, and snippets.

@paill
paill / Dockerfile
Created October 16, 2021 03:50
Build & run Java app using multi-stage Dockerfile
FROM maven:3-openjdk-8 AS builder
COPY src /tmp/src
RUN mvn -f /tmp/src clean package -DskipTests
FROM openjdk:
COPY --from=builder /tmp/src/target/myjar-0.0.1-SNAPSHOT.jar /tmp/run/myjar.jar
WORKDIR /tmp/run
CMD ["java","-jar","myjar.jar"]
@paill
paill / InstallGuide.md
Last active December 29, 2023 03:11
How to setup your Mac and Development Environment for OS-X Yosemite

Setting up your Mac

Geting an Admin Account

  • In order to install and configure your Mac, you need to be an Administrator on your computer. Either, contact Paul or Charlie, and they will create an account for you.

Installing of Software

Homebrew