Severian commited on
Commit
7cc8bc4
·
verified ·
1 Parent(s): c0dcc0e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -2,7 +2,11 @@ FROM python:3.9-slim
2
 
3
  WORKDIR /code
4
 
5
- COPY . /code/
 
 
 
 
6
 
7
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
 
2
 
3
  WORKDIR /code
4
 
5
+ COPY ./requirements.txt /code/requirements.txt
6
+ COPY ./api.py /code/api.py
7
+ COPY ./json_parser.py /code/json_parser.py
8
+ COPY ./logger_config.py /code/logger_config.py
9
+ COPY ./response_formatter.py /code/response_formatter.py
10
 
11
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12