RosiYo commited on
Commit
91d2214
·
1 Parent(s): dcbf14e

chore[bert]: Docker probe of concept

Browse files
ml-service/Dockerfile → Dockerfile RENAMED
@@ -10,10 +10,8 @@ RUN apt-get update && \
10
 
11
  RUN apt-get clean && rm -rf /var/lib/apt/lists/*
12
 
 
13
  WORKDIR /app
14
-
15
- COPY requirements.txt /app/requirements.txt
16
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
17
- COPY . /app
18
 
19
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "6000"]
 
10
 
11
  RUN apt-get clean && rm -rf /var/lib/apt/lists/*
12
 
13
+ COPY ./ml-service /app
14
  WORKDIR /app
 
 
15
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
 
16
 
17
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "6000"]