Begin a basic Dockerfile

This commit is contained in:
Albert S. 2019-02-21 10:48:36 +01:00
parent 4a17102c68
commit c56fc30543
1 changed files with 16 additions and 0 deletions

16
Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM alpine:edge
RUN apk update
RUN apk upgrade
RUN apk add sqlite-dev
RUN apk add boost-regex
RUN apk add openssl-dev
RUN apk add make g++
RUN apk add boost-dev
COPY . /app
WORKDIR /app
RUN adduser -D qswiki
RUN chown -R qswiki .
RUN mkdir /config/ /cache/
USER qswiki
RUN make release
ENTRYPOINT /app/qswiki /config/qswiki.conf