moving dockerfile to empty dir to avoid pulling in pointless context

This commit is contained in:
shockrah 2021-01-25 20:33:06 -08:00
parent 2a4da34c99
commit 462fe463f7

View File

@ -1,6 +1,8 @@
# This File basically sets up a fresh alpine install with all the things # This File basically sets up a fresh alpine install with all the things
# required for setting up a new freechat instance # required for setting up a new freechat instance
FROM alpine:latest
# First we simply install all the things we may need to build/ # First we simply install all the things we may need to build/
RUN apk add mysql RUN apk add mysql
RUN apk add nginx RUN apk add nginx
@ -12,4 +14,5 @@ RUN apk add git
RUN git clone https://gitlab.com/shockrah/freechat.git/ /opt/freechat/ RUN git clone https://gitlab.com/shockrah/freechat.git/ /opt/freechat/
RUN cd /opt/freechat/ RUN cd /opt/freechat/
RUN sh docker-auto-build.sh RUN sh docker-auto-build.sh
RUN /opt/