You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dockerfile
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,24 @@
1
1
FROM deis/go-dev
2
2
3
-
# Ruby
4
3
RUN apt-get update
4
+
5
+
# Ruby
5
6
RUN apt-get install hugo ruby ruby-dev curl apt-utils -y
6
7
RUN gem install sass --no-user-install
7
8
8
9
# Node.JS
9
10
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash
10
11
RUN apt-get install nodejs -y
11
12
13
+
# Typescript
14
+
RUN npm install -g typescript
15
+
16
+
# Fontcustom
17
+
RUN apt-get install zlib1g-dev fontforge -y
18
+
RUN git clone https://github.com/bramstein/sfnt2woff-zopfli.git sfnt2woff-zopfli && cd sfnt2woff-zopfli && make && mv sfnt2woff-zopfli /usr/local/bin/sfnt2woff
19
+
RUN git clone --recursive https://github.com/google/woff2.git && cd woff2 && make clean all && mv woff2_compress /usr/local/bin/ && mv woff2_decompress /usr/local/bin/
0 commit comments