zkwentz commited on
Commit
29fb64a
·
verified ·
1 Parent(s): 33e0bd8

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. Dockerfile +1 -0
  2. server/Dockerfile +1 -0
Dockerfile CHANGED
@@ -18,6 +18,7 @@ COPY . /app
18
 
19
  RUN pip install --no-cache-dir -r /tmp/requirements.txt && rm /tmp/requirements.txt
20
 
 
21
  # Copy only what's needed for this environment
22
 
23
 
 
18
 
19
  RUN pip install --no-cache-dir -r /tmp/requirements.txt && rm /tmp/requirements.txt
20
 
21
+
22
  # Copy only what's needed for this environment
23
 
24
 
server/Dockerfile CHANGED
@@ -14,6 +14,7 @@ FROM ${BASE_IMAGE}
14
  COPY src/envs/coding_env/server/requirements.txt /tmp/requirements.txt
15
  RUN pip install --no-cache-dir -r /tmp/requirements.txt && rm /tmp/requirements.txt
16
 
 
17
  # Copy only what's needed for this environment
18
  COPY src/core/ /app/src/core/
19
  COPY src/envs/coding_env/ /app/src/envs/coding_env/
 
14
  COPY src/envs/coding_env/server/requirements.txt /tmp/requirements.txt
15
  RUN pip install --no-cache-dir -r /tmp/requirements.txt && rm /tmp/requirements.txt
16
 
17
+
18
  # Copy only what's needed for this environment
19
  COPY src/core/ /app/src/core/
20
  COPY src/envs/coding_env/ /app/src/envs/coding_env/