-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile.dev
More file actions
179 lines (150 loc) · 5.21 KB
/
Dockerfile.dev
File metadata and controls
179 lines (150 loc) · 5.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# Copy from https://github.com/customink/ruby-vips-lambda/blob/master/Dockerfile
FROM lambci/lambda:build-ruby2.7
WORKDIR /build
ARG VIPS_VERSION=8.10.0
ENV VIPS_VERSION=$VIPS_VERSION
ENV PATH=/opt/bin:$PATH
ENV LD_LIBRARY_PATH=/opt/lib:/opt/lib64:$LD_LIBRARY_PATH
ENV PKG_CONFIG_PATH=/opt/lib/pkgconfig:/opt/lib64/pkgconfig
ENV CFLAGS="-fexceptions -Wall -O3"
ENV CXXFLAGS="${CFLAGS}"
# Setup Some Dirs
#
RUN mkdir -p \
share/lib \
share/include
# Install expat
#
RUN curl https://codeload.github.com/libexpat/libexpat/zip/R_2_2_9 > libexpat-R_2_2_9.zip && \
unzip libexpat-R_2_2_9.zip && \
cd ./libexpat-R_2_2_9/expat && \
./buildconf.sh && \
./configure --prefix=/opt && \
make install
RUN cp -a /opt/lib/libexpat.so* /build/share/lib
# Install libpng
#
RUN curl -L https://downloads.sourceforge.net/libpng/libpng-1.6.37.tar.xz > libpng-1.6.37.tar.xz && \
tar -xf libpng-1.6.37.tar.xz && \
cd libpng-1.6.37 && \
./configure --prefix=/opt --disable-static && \
make && \
make install
RUN cp -a /opt/lib/libpng.so* /build/share/lib && \
cp -a /opt/lib/libpng16.so* /build/share/lib
# Install giflib
#
RUN curl -L https://sourceforge.net/projects/giflib/files/giflib-5.2.1.tar.gz > giflib-5.2.1.tar.gz && \
tar -xf giflib-5.2.1.tar.gz && \
cd giflib-5.2.1 && \
make && \
make PREFIX=/opt install
RUN cp -a /opt/lib/libgif.so* /build/share/lib
# Install libjpeg-turbo
#
RUN curl -L https://downloads.sourceforge.net/libjpeg-turbo/libjpeg-turbo-2.0.4.tar.gz > libjpeg-turbo-2.0.4.tar.gz && \
tar -xf libjpeg-turbo-2.0.4.tar.gz && \
cd libjpeg-turbo-2.0.4 && \
cmake -DCMAKE_INSTALL_PREFIX=/opt && \
make && \
make install
RUN cp -a /opt/lib64/libjpeg.so* /build/share/lib && \
cp -a /opt/lib64/libturbojpeg.so* /build/share/lib
# Install libimagequant
#
RUN git clone https://github.com/ImageOptim/libimagequant.git && \
cd ./libimagequant && \
git checkout 2.12.6 && \
./configure --prefix=/opt && \
make libimagequant.so && \
make install && \
echo /opt/lib > /etc/ld.so.conf.d/libimagequant.conf && \
ldconfig
RUN cp -a /opt/lib/libimagequant.so* /build/share/lib/ && \
cp -a /opt/include/libimagequant.h /build/share/include/
# Install libfftw
#
RUN curl -L http://www.fftw.org/fftw-3.3.8.tar.gz > fftw-3.3.8.tar.gz && \
tar -xf fftw-3.3.8.tar.gz && \
cd ./fftw-3.3.8 && \
./configure \
--prefix=/opt \
--enable-shared \
--disable-static \
--enable-threads \
--enable-sse2 \
--enable-avx && \
make && \
make install
RUN cp -a /opt/lib/libfftw3* /build/share/lib/
# Install liborc (perf)
#
RUN curl -L https://gstreamer.freedesktop.org/data/src/orc/orc-0.4.26.tar.xz > orc-0.4.26.tar.xz && \
tar -xf orc-0.4.26.tar.xz && \
cd orc-0.4.26 && \
./configure --prefix=/opt && \
make && \
make install
RUN cp -a /opt/lib/liborc-0.4.so* /build/share/lib/
# Install libvips. Primary deps https://libvips.github.io/libvips/install.html
#
RUN yum install -y \
gtk-doc \
ninja-build
RUN pip3 install meson && \
pip3 install ninja
RUN curl -L http://ftp.gnome.org/pub/gnome/sources/glib/2.64/glib-2.64.2.tar.xz > glib-2.64.2.tar.xz && \
tar -xf glib-2.64.2.tar.xz && \
cd glib-2.64.2 && \
mkdir ./_build && \
cd ./_build && \
meson --prefix=/opt .. && \
ninja && \
ninja install
RUN cp -a /opt/lib64/libffi.so* /build/share/lib && \
cp -a /opt/lib64/libgio-2.0.so* /build/share/lib && \
cp -a /opt/lib64/libglib-2.0.so* /build/share/lib && \
cp -a /opt/lib64/libgmodule-2.0.so* /build/share/lib && \
cp -a /opt/lib64/libgobject-2.0.so* /build/share/lib && \
cp -a /opt/lib64/libgthread-2.0.so* /build/share/lib
RUN curl -L http://ftp.gnome.org/pub/gnome/sources/gobject-introspection/1.64/gobject-introspection-1.64.1.tar.xz > gobject-introspection-1.64.1.tar.xz && \
tar -xf gobject-introspection-1.64.1.tar.xz && \
cd gobject-introspection-1.64.1 && \
mkdir ./_build && \
cd ./_build && \
meson --prefix=/opt .. && \
ninja && \
ninja install
# Install libvips.
#
RUN curl -L https://github.com/libvips/libvips/releases/download/v${VIPS_VERSION}/vips-${VIPS_VERSION}.tar.gz > vips-${VIPS_VERSION}.tar.gz && \
tar -xf vips-${VIPS_VERSION}.tar.gz && \
cd vips-${VIPS_VERSION} && \
./configure \
--prefix=/opt \
--disable-gtk-doc \
--without-magick \
--with-expat=/opt \
--with-giflib-includes=/opt/local/include \
--with-giflib-libraries=/opt/local/lib && \
make && \
make install && \
echo /opt/lib > /etc/ld.so.conf.d/libvips.conf && \
ldconfig
RUN cp -a /opt/lib/libvips.so* /build/share/lib
# Store the VIPS_VERSION variable in a file, accessible to the deploy script.
#
RUN echo $VIPS_VERSION > "./share/VIPS_VERSION"
# Create an /build/share/opt/lib64 symlink for shared objects.
#
RUN cd ./share && ln -s lib lib64
# Zip up contents so final `lib` can be placed in /opt layer.
#
RUN cd ./share && \
zip --symlinks -r libvips.zip .
# serverless frameworkのインストール
RUN curl -sL https://rpm.nodesource.com/setup_12.x | bash - \
&& yum -y install nodejs && yum -y clean all \
&& npm install -g serverless
WORKDIR /var/task/
CMD ["/bin/bash"]