You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
304 B
Docker
6 lines
304 B
Docker
4 months ago
|
FROM alpine:3.11
|
||
|
WORKDIR /rathena
|
||
|
RUN apk add --no-cache wget git cmake make gcc g++ gdb zlib-dev mariadb-dev ca-certificates linux-headers bash valgrind netcat-openbsd
|
||
|
RUN wget https://raw.githubusercontent.com/eficode/wait-for/v2.2.2/wait-for -O /bin/wait-for && chmod +x /bin/wait-for
|
||
|
ENTRYPOINT [ ]
|