Skip to content
Snippets Groups Projects
Dockerfile 378 B
Newer Older
Griefed's avatar
Griefed committed
FROM lsiobase/nginx:3.12
Griefed's avatar
Griefed committed

LABEL maintainer="Griefed <griefed@griefed.de>"

Griefed's avatar
Griefed committed
RUN \
    echo "**** Install dependencies, build tools and stuff ****" && \
    apk add --no-cache \
      git && \
    echo "**** Cleanup ****" && \
    rm -rf \
      /root/.cache \
      /tmp/*
Griefed's avatar
Griefed committed

Griefed's avatar
Griefed committed
# Copy local files
COPY root/ /
Griefed's avatar
Griefed committed

Griefed's avatar
Griefed committed
# Communicate ports and volumes to be used
EXPOSE 80 443

VOLUME /config