Skip to content

Commit

Permalink
modified: .github/actions/recent-posts/Dockerfile
Browse files Browse the repository at this point in the history
	- Copying *everything* instead of just main.py.
  • Loading branch information
it176131 committed Dec 26, 2024
1 parent de4aa94 commit 45befd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/recent-posts/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM python:3.13

COPY requirements.txt ./
COPY requirements.txt .
RUN python -m pip install -U pip
RUN pip install --no-cache-dir -r requirements.txt

COPY main.py .
COPY . .

CMD ["python", "/main.py"]

0 comments on commit 45befd2

Please sign in to comment.