Skip to content

Commit

Permalink
fix for old Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelindigo committed Jun 22, 2024
1 parent 957672c commit b34da42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/apps/simplewebapp/web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.11-alpine

COPY server.py requirements.txt .
COPY server.py requirements.txt ./

RUN pip install -r requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion examples/crawlers/simplecrawler/src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM python:3.11-alpine

WORKDIR /opt/simplecrawler

COPY crawler.py requirements.txt .
COPY crawler.py requirements.txt ./

RUN pip install -r requirements.txt

Expand Down

0 comments on commit b34da42

Please sign in to comment.