Skip to content

Instantly share code, notes, and snippets.

View KharmaScribbles's full-sized avatar

Kharma Scribbles KharmaScribbles

View GitHub Profile
@KharmaScribbles
KharmaScribbles / fontface.sh
Created June 9, 2018 01:43
-forked- Convert any EOT/OTF/TTF font to all required @font-face and shows a ready-to-use CSS code
#!/bin/bash
# dependencies
FONTFORGE=`which fontforge`
TTFAUTOHINT=`which ttfautohint`
# base checks
if [ "x$1" == "x" ]; then
echo "Usage: ./font-forge.sh [FILE]"
exit
# Base image
FROM gliderlabs/alpine:3.3
MAINTAINER Philippe Caseiro <pcaseiro@cadoles.com>
# Install Nodejs
RUN apk add --no-cache nodejs
RUN apk add --no-cache git
# Clone haste-server from git
RUN mkdir /opt