Skip to content

Commit dc192d6

Browse files
Create Dockerfile.linux-arm
1 parent d326c26 commit dc192d6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Dockerfile.linux-arm

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
FROM arm32v6/alpine
2+
COPY tmp/qemu-arm-static /usr/bin/qemu-arm-static
3+
4+
MAINTAINER Raymond Mouthaan <[email protected]>
5+
6+
RUN apk --no-cache add --virtual build-dependencies wget ca-certificates
7+
8+
ENV DF_DOCKER_HOST="unix:///var/run/docker.sock" \
9+
DF_NOTIFICATION_URL="" \
10+
DF_RETRY="50" \
11+
DF_RETRY_INTERVAL="5" \
12+
DF_NOTIFY_LABEL="com.df.notify" \
13+
DF_INCLUDE_NODE_IP_INFO="false"
14+
15+
16+
COPY docker-flow-swarm-listener_linux_arm /usr/local/bin/docker-flow-swarm-listener
17+
RUN chmod +x /usr/local/bin/docker-flow-swarm-listener
18+
19+
HEALTHCHECK --interval=5s --start-period=3s --timeout=5s CMD wget -qO- "http://localhost:8080/v1/docker-flow-swarm-listener/ping"
20+
21+
EXPOSE 8080
22+
23+
CMD ["docker-flow-swarm-listener"]

0 commit comments

Comments
 (0)