PyxiLabs commited on
Commit
693fa28
·
verified ·
1 Parent(s): 77d553c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -4
Dockerfile CHANGED
@@ -4,14 +4,15 @@ FROM python:3.9-slim
4
  # Set the working directory in the container
5
  WORKDIR /app
6
 
7
- # Install git and other necessary packages
8
  RUN apt-get update && \
9
- apt-get install -y git && \
 
 
 
10
  apt-get clean && \
11
  rm -rf /var/lib/apt/lists/*
12
 
13
- RUN git lfs install
14
-
15
  # Clone the repository into the /app directory
16
  RUN git clone https://huggingface.co/datasets/PyxiLab/Pyxilab._.Vocify .
17
 
 
4
  # Set the working directory in the container
5
  WORKDIR /app
6
 
7
+ # Install git, git-lfs, and other necessary packages
8
  RUN apt-get update && \
9
+ apt-get install -y git curl && \
10
+ curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash && \
11
+ apt-get install -y git-lfs && \
12
+ git lfs install && \
13
  apt-get clean && \
14
  rm -rf /var/lib/apt/lists/*
15
 
 
 
16
  # Clone the repository into the /app directory
17
  RUN git clone https://huggingface.co/datasets/PyxiLab/Pyxilab._.Vocify .
18