Skip to content

Commit

Permalink
fix docker build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Divkix committed Mar 1, 2023
1 parent a3d9e67 commit 2ceaee5
Show file tree
Hide file tree
Showing 4 changed files with 555 additions and 458 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
FROM ghcr.io/divkix/docker-python-base:latest
WORKDIR /app
COPY pyproject.toml poetry.lock .
RUN poetry export -f requirements.txt --without-hashes --output requirements.txt
RUN pip install --disable-pip-version-check -r requirements.txt
COPY . .
RUN poetry export -f requirements.txt --without-hashes --output requirements.txt \
&& pip install --disable-pip-version-check -r requirements.txt
ENTRYPOINT ["python3"]
CMD ["-m", "vidmergebot"]
Loading

0 comments on commit 2ceaee5

Please sign in to comment.