Skip to content

Instantly share code, notes, and snippets.

View Letsfindme's full-sized avatar
🎯
Focusing

Charlie Letsfindme

🎯
Focusing
View GitHub Profile
@Letsfindme
Letsfindme / Dockerfile
Created October 22, 2019 19:19 — forked from karlisabele/Dockerfile
Simple openjdk and mysql docker set-up
FROM openjdk:8u201-jdk-alpine3.9
RUN apk update && apk add mysql-client && rm -f /var/cache/apk/*
ENTRYPOINT ["sh"]
CMD ["-c" , "tail -f /dev/null"]