GitHub Action
commited on
Commit
•
f20ef11
1
Parent(s):
215ce39
refs/heads/ci-cd/hugging-face
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -2,6 +2,8 @@ FROM python:3.8-slim
|
|
2 |
|
3 |
RUN curl -sSL https://install.python-poetry.org | python3 -
|
4 |
|
5 |
-
|
|
|
|
|
6 |
|
7 |
CMD ["$HOME/.poetry/bin/poetry", "run", "make", "build"]
|
|
|
2 |
|
3 |
RUN curl -sSL https://install.python-poetry.org | python3 -
|
4 |
|
5 |
+
ENV PATH="${PATH}:/root/.poetry/bin"
|
6 |
+
|
7 |
+
RUN poetry install
|
8 |
|
9 |
CMD ["$HOME/.poetry/bin/poetry", "run", "make", "build"]
|