testdeep123 commited on
Commit
dcb24d4
·
verified ·
1 Parent(s): e80fc8d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -4,7 +4,7 @@ ENV DEBIAN_FRONTEND=noninteractive
4
 
5
  # Install dependencies
6
  RUN apt-get update && \
7
- apt-get install -y wget gnupg && \
8
  rm -rf /var/lib/apt/lists/*
9
 
10
  # Add Amazon Corretto GPG key and repository
@@ -16,6 +16,10 @@ RUN apt-get update && \
16
  apt-get install -y java-21-amazon-corretto-jdk && \
17
  rm -rf /var/lib/apt/lists/*
18
 
 
 
 
 
19
  # Set working directory
20
  WORKDIR /app
21
 
 
4
 
5
  # Install dependencies
6
  RUN apt-get update && \
7
+ apt-get install -y wget gnupg git git-lfs && \
8
  rm -rf /var/lib/apt/lists/*
9
 
10
  # Add Amazon Corretto GPG key and repository
 
16
  apt-get install -y java-21-amazon-corretto-jdk && \
17
  rm -rf /var/lib/apt/lists/*
18
 
19
+ # Download Minecraft world from Hugging Face dataset
20
+ RUN git lfs install && \
21
+ git clone https://huggingface.co/datasets/testdeep123/world /app/world
22
+
23
  # Set working directory
24
  WORKDIR /app
25