You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
293 B
16 lines
293 B
FROM scratch
|
|
|
|
USER 65534:65534
|
|
|
|
ADD data/ /
|
|
|
|
VOLUME /document-root
|
|
ENV DOCUMENT_ROOT /document-root
|
|
|
|
LABEL version="0.0.1"
|
|
LABEL maintainer="Georg Hopp <georg@steffers.org>"
|
|
LABEL description="The whole steffers.org homepage as docker container"
|
|
|
|
EXPOSE 8080
|
|
|
|
ENTRYPOINT ["/bin/steffers.org"]
|