From 462fe463f735199fcfaa7ce3e4388d43669ce18a Mon Sep 17 00:00:00 2001 From: shockrah Date: Mon, 25 Jan 2021 20:33:06 -0800 Subject: [PATCH] moving dockerfile to empty dir to avoid pulling in pointless context --- Dockerfile => docker/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) rename Dockerfile => docker/Dockerfile (93%) diff --git a/Dockerfile b/docker/Dockerfile similarity index 93% rename from Dockerfile rename to docker/Dockerfile index 5bb4f41..07d69ee 100644 --- a/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,8 @@ # This File basically sets up a fresh alpine install with all the things # required for setting up a new freechat instance +FROM alpine:latest + # First we simply install all the things we may need to build/ RUN apk add mysql RUN apk add nginx @@ -12,4 +14,5 @@ RUN apk add git RUN git clone https://gitlab.com/shockrah/freechat.git/ /opt/freechat/ RUN cd /opt/freechat/ RUN sh docker-auto-build.sh +RUN /opt/