init commit
This commit is contained in:
20
Dockerfile
Normal file
20
Dockerfile
Normal file
@@ -0,0 +1,20 @@
|
||||
FROM ubuntu:jammy
|
||||
RUN apt-get update
|
||||
RUN apt-get upgrade -y
|
||||
RUN apt-get install jq -y
|
||||
RUN apt-get install webp -y
|
||||
RUN apt-get install openjdk-17-jre -y
|
||||
RUN apt-get install curl -y
|
||||
RUN apt-get install wget -y
|
||||
RUN mkdir -p /opt/ftbmc
|
||||
RUN mkdir -p /tmp/modpackch
|
||||
WORKDIR /tmp/modpackch
|
||||
COPY downloadpack.sh .
|
||||
COPY cleanup.sh .
|
||||
COPY setup.sh .
|
||||
RUN chmod +x *sh
|
||||
|
||||
ENV MAXMEMORY="20g"
|
||||
ENV MINMEMORY="10g"
|
||||
|
||||
ENTRYPOINT [ "bash", "./setup.sh" ]
|
||||
Reference in New Issue
Block a user