Skip to content

Commit

Permalink
Fix dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: thepetk <[email protected]>
  • Loading branch information
thepetk committed Apr 15, 2024
1 parent 3c474b3 commit 77c6a20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ LABEL "maintainer"="thepetk <[email protected]>"
WORKDIR /github/workspace/

COPY entrypoint.sh /entrypoint.sh
COPY requirements.txt /requirements.txt
COPY maintainer.py /maintainer.py
COPY requirements.txt .
COPY maintainer.py .

RUN pip install -r /requirements.txt
RUN pip install -r requirements.txt

ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]

0 comments on commit 77c6a20

Please sign in to comment.