forked from otland/forgottenserver
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Dockerfile
44 lines (40 loc) · 985 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
FROM alpine:3.13.0 AS build
# crypto++-dev is in edge/testing
RUN apk add --no-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
binutils \
boost-dev \
build-base \
clang \
cmake \
crypto++-dev \
fmt-dev \
gcc \
gmp-dev \
luajit-dev \
make \
mariadb-connector-c-dev \
pugixml-dev
COPY cmake /usr/src/forgottenserver/cmake/
COPY src /usr/src/forgottenserver/src/
COPY CMakeLists.txt /usr/src/forgottenserver/
WORKDIR /usr/src/forgottenserver/build
RUN cmake .. && make
FROM alpine:3.13.0
# crypto++ is in edge/testing
RUN apk add --no-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
boost-iostreams \
boost-system \
boost-filesystem \
crypto++ \
fmt \
gmp \
luajit \
mariadb-connector-c \
pugixml
COPY --from=build /usr/src/forgottenserver/build/tfs /bin/tfs
COPY data /srv/data/
COPY LICENSE README.md *.dist *.sql key.pem /srv/
EXPOSE 7171 7172
WORKDIR /srv
VOLUME /srv
ENTRYPOINT ["/bin/tfs"]