freechat/Dockerfile
shockrah 751e24b867 Help script in docker-auto-build.sh
adding openssl-dev requirements for buliding json-api to Dockerfile
2021-01-25 20:23:13 -08:00

16 lines
454 B
Docker

# This File basically sets up a fresh alpine install with all the things
# required for setting up a new freechat instance
# First we simply install all the things we may need to build/
RUN apk add mysql
RUN apk add nginx
RUN apk add openssl-dev
RUN apk add cargo
RUN apk add git
# Now we being the freechat installation process
RUN git clone https://gitlab.com/shockrah/freechat.git/ /opt/freechat/
RUN cd /opt/freechat/
RUN sh docker-auto-build.sh