Update Dockerfile
Browse files- Dockerfile +1 -4
Dockerfile
CHANGED
@@ -25,11 +25,8 @@ RUN pip install transformers accelerate fastapi uvicorn requests psutil
|
|
25 |
# Copy the current directory contents into the container at /app
|
26 |
COPY . /app
|
27 |
|
28 |
-
# Copy the zip file containing XML and JSON data into the container
|
29 |
-
COPY data.zip /app/data.zip
|
30 |
-
|
31 |
# Unzip the data.zip file into the /app/data directory
|
32 |
-
RUN unzip
|
33 |
|
34 |
# Set the default command to run when starting the container
|
35 |
CMD ["python", "model.py"]
|
|
|
25 |
# Copy the current directory contents into the container at /app
|
26 |
COPY . /app
|
27 |
|
|
|
|
|
|
|
28 |
# Unzip the data.zip file into the /app/data directory
|
29 |
+
RUN unzip data.zip -d /app/data
|
30 |
|
31 |
# Set the default command to run when starting the container
|
32 |
CMD ["python", "model.py"]
|