moimobrian commited on
Commit
1dc4e4c
·
1 Parent(s): bbcbb55

Errors in Dockerfile fixed (COPY lines)

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -6,11 +6,11 @@ RUN apt-get update && apt-get install -y \
6
  build-essential \
7
  && rm -rf /var/lib/apt/lists/*
8
 
9
- COPY requirements.txt
10
 
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
- COPY main.py
14
 
15
  EXPOSE 7860
16
 
 
6
  build-essential \
7
  && rm -rf /var/lib/apt/lists/*
8
 
9
+ COPY requirements.txt .
10
 
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
+ COPY main.py .
14
 
15
  EXPOSE 7860
16