File tree Expand file tree Collapse file tree 5 files changed +45
-0
lines changed Expand file tree Collapse file tree 5 files changed +45
-0
lines changed Original file line number Diff line number Diff line change
1
+ all : supervisor glibc.supervisor glibc
2
+
3
+ glibc :
4
+ @docker build -t shcoder/alpine:glibc ./glibc
5
+ supervisor :
6
+ @docker build -t shcoder/alpine:supervisor ./supervisor
7
+ glibc.supervisor :
8
+ @docker build -t shcoder/alpine:glibc.supervisor ./glibc-supervisor
Original file line number Diff line number Diff line change
1
+ FROM shcoder/alpine:glibc
2
+
3
+ MAINTAINER shcoder.alex@gmail.com
4
+
5
+ RUN apk update && apk add supervisor && \
6
+ mkdir /etc/supervisor.d && \
7
+ mv /etc/supervisord.conf /etc/supervisor.d/supervisord.conf && \
8
+ mkdir /var/log/supervisor && chmod 755 /var/log/supervisor
9
+
10
+ CMD /usr/bin/supervisord -n -c /etc/supervisor.d/supervisord.conf
Original file line number Diff line number Diff line change
1
+ FROM alpine:latest
2
+
3
+ MAINTAINER shcoder.alex@gmail.com
4
+
5
+ RUN apk update && \
6
+ apk --no-cache add ca-certificates wget bash && \
7
+ update-ca-certificates && \
8
+ wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://raw.githubusercontent.com/sgerrand/alpine-pkg-glibc/master/sgerrand.rsa.pub && \
9
+ wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.23-r3/glibc-2.23-r3.apk && \
10
+ apk add glibc-2.23-r3.apk && rm glibc-2.23-r3.apk
Original file line number Diff line number Diff line change
1
+ # alpine-glibc
2
+
3
+ ```
4
+ FROM shcoder/alpine:glibc
5
+
6
+ etc...
7
+ ```
Original file line number Diff line number Diff line change
1
+ FROM alpine:latest
2
+
3
+ MAINTAINER shcoder.alex@gmail.com
4
+
5
+ RUN apk update && apk add supervisor && \
6
+ mkdir /etc/supervisor.d && \
7
+ mv /etc/supervisord.conf /etc/supervisor.d/supervisord.conf && \
8
+ mkdir /var/log/supervisor && chmod 755 /var/log/supervisor
9
+
10
+ CMD /usr/bin/supervisord -n -c /etc/supervisor.d/supervisord.conf
You can’t perform that action at this time.
0 commit comments