Dynamically download modpacks at runtime if so desired

This commit is contained in:
2021-04-09 16:54:45 -05:00
parent 7a6404b861
commit 8a78fd604a
3 changed files with 24 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ RUN apk add curl openjdk8-jre &&\
# The second stage is the actual container
FROM openjdk:8
RUN apt-get update && apt-get install rsync -y
WORKDIR /minecraft
COPY --from=build /minecraft .
CMD [ "bash", "start-server.sh" ]