summaryrefslogtreecommitdiffstats
path: root/docker-api/src/test/resources/simple-ipv6-server/Dockerfile
blob: 0be39db54d80b722d2dad5f4b32f7e70c89feaa6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

FROM gliderlabs/alpine:3.4

# Install python and curl
RUN apk-install python curl

# Copy source
ADD src/ pysrc

# Run http server on port 80
EXPOSE  80
CMD ["python", "/pysrc/server.py"]