Sign inSign up

rzepson/touchgrass

By rzepson

Updated about 2 years ago

This https://github.com/juxtopposed/touchgrass but dockerized with httpd

Image
Web servers
0

2.2K

rzepson/touchgrass repository overview

Touch grass but in a Docker Image

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

You can use the following command to run this image:
docker run -dp 8080:80 rzepson/touchgrass:latest
Dockerfile:
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

Tag summary

Content type

Image

Digest

sha256:f73c4d479

Size

24.9 MB

Last updated

about 2 years ago

docker pull rzepson/touchgrass