Skip to content

Commit d5705f2

Browse files
authored
update mcjoin to 2.12 (#8)
* update mcjoin version * add wget to builder
1 parent 0ac6e5a commit d5705f2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
FROM alpine:3.18.6 AS builder
22

33
RUN apk update && apk add --virtual .build-deps \
4-
build-base gcc
4+
build-base gcc wget
55

6-
RUN wget https://github.com/troglobit/mcjoin/releases/download/v2.11/mcjoin-2.11.tar.gz
7-
RUN tar -xzf mcjoin-2.11.tar.gz
8-
WORKDIR /mcjoin-2.11
6+
RUN wget https://github.com/troglobit/mcjoin/releases/download/v2.12/mcjoin-2.12.tar.gz
7+
RUN tar -xzf mcjoin-2.12.tar.gz
8+
WORKDIR /mcjoin-2.12
99
RUN ./configure
1010
RUN make -j5
1111
RUN make install-strip
@@ -87,4 +87,4 @@ COPY entrypoint.sh /docker/entrypoint.sh
8787
CMD ["/usr/sbin/nginx", "-g", "daemon off;"]
8888

8989
# Run the startup script as ENTRYPOINT, which does few things and then starts nginx.
90-
ENTRYPOINT ["/bin/sh", "/docker/entrypoint.sh"]
90+
ENTRYPOINT ["/bin/sh", "/docker/entrypoint.sh"]

0 commit comments

Comments
 (0)