Skip to content

Commit 2ed6739

Browse files
authored
Merge pull request #69 from msdevanms/patch-2
Update Dockerfile to avoid build error : When using COPY with more th…
2 parents e0274e7 + 5c1360d commit 2ed6739

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ COPY requirements.txt /app
66

77
RUN pip install --no-cache-dir -r requirements.txt
88

9-
COPY *.py /app
9+
COPY *.py /app/
1010

1111
COPY output/ /app
1212

1313
EXPOSE 5000
1414

1515
ENV FLASK_APP=app.py
1616

17-
CMD ["flask", "run", "--host=0.0.0.0", "--port=5000"]
17+
CMD ["flask", "run", "--host=0.0.0.0", "--port=5000"]

0 commit comments

Comments
 (0)