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