podman-compose/tests/integration/build/context/Dockerfile-alt

10 lines
310 B
Plaintext
Raw Normal View History

2019-09-03 17:35:56 +02:00
FROM busybox
ARG buildno=1
ARG httpd_port=80
2020-04-02 16:18:16 +02:00
ARG other_variable=not_set
2019-09-03 17:35:56 +02:00
ENV httpd_port ${httpd_port}
2020-04-02 16:18:16 +02:00
ENV other_variable ${other_variable}
2019-09-03 17:35:56 +02:00
RUN mkdir -p /var/www/html/ && \
echo "ALT buildno=$buildno port=$httpd_port `date -Iseconds`" > /var/www/html/index.txt
CMD httpd -f -p "$httpd_port" -h /var/www/html