* Add dockerised local development environment * Enable tini (--init) for server container See https://docs.docker.com/compose/compose-file/#init for details * Add local development environment documentation * Add a tip for how-to connect a client on the same machine * Add specialized tools/docker folder Co-authored-by: Eric <latiosworks@gmail.com>
5 lines
162 B
Docker
5 lines
162 B
Docker
FROM alpine:3.11
|
|
WORKDIR /rathena
|
|
RUN apk add --no-cache git cmake make gcc g++ gdb zlib-dev mariadb-dev ca-certificates linux-headers bash
|
|
ENTRYPOINT [ "bash" ]
|