This https://github.com/juxtopposed/touchgrass but dockerized with httpd
2.2K
This Docker image is built to serve a simple web application that allows its users to touch grass using an Apache HTTP server.
App made by Juxtopposed
docker run -dp 8080:80 rzepson/touchgrass:latest
FROM alpine AS clone
RUN apk fix && apk --no-cache --update add git
RUN git clone https://github.com/juxtopposed/touchgrass
FROM httpd:alpine
ARG BUILD_DATE
LABEL org.label-schema.schema-version="1.0"
LABEL org.label-schema.build-date=$BUILD_DATE
LABEL org.label-schema.docker.cmd="docker run -dp 8080:80 rzepson/touchgrass"
COPY --from=clone /touchgrass/ /usr/local/apache2/htdocs/
EXPOSE 80
Content type
Image
Digest
sha256:f73c4d479…
Size
24.9 MB
Last updated
about 2 years ago
docker pull rzepson/touchgrass