5 lines
171 B
Docker
5 lines
171 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 valgrind
|
|
ENTRYPOINT [ "bash" ]
|