Skip to content

Commit 53de202

Browse files
committed
First commit
0 parents  commit 53de202

File tree

5 files changed

+45
-0
lines changed

5 files changed

+45
-0
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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

glibc-supervisor/Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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

glibc/Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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

glibc/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# alpine-glibc
2+
3+
```
4+
FROM shcoder/alpine:glibc
5+
6+
etc...
7+
```

supervisor/Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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

0 commit comments

Comments
 (0)