ncoop57 commited on
Commit
5f3cdc5
1 Parent(s): b97f6e6

Fix bug of path where things are ran

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -2,11 +2,11 @@ FROM python:3.10-slim-buster
2
 
3
  WORKDIR /python-docker
4
 
5
- COPY copilot_proxy/requirements.txt requirements.txt
6
 
7
  RUN pip3 install --no-cache-dir -r requirements.txt
8
 
9
- COPY copilot_proxy .
10
 
11
  EXPOSE 5000
12
 
 
2
 
3
  WORKDIR /python-docker
4
 
5
+ COPY requirements.txt requirements.txt
6
 
7
  RUN pip3 install --no-cache-dir -r requirements.txt
8
 
9
+ COPY . .
10
 
11
  EXPOSE 5000
12