Fix module support
This commit is contained in:
parent
bd5f37086e
commit
2f2475985d
2 changed files with 2 additions and 2 deletions
|
@ -7,6 +7,6 @@ COPY poetry.lock pyproject.toml ./
|
||||||
RUN apk add --no-cache gcc musl-dev python3-dev libffi-dev openssl-dev cargo && pip install --no-cache-dir poetry && poetry config virtualenvs.create false && poetry install --no-root --no-interaction --no-ansi -vvv && apk del gcc musl-dev python3-dev libffi-dev openssl-dev cargo
|
RUN apk add --no-cache gcc musl-dev python3-dev libffi-dev openssl-dev cargo && pip install --no-cache-dir poetry && poetry config virtualenvs.create false && poetry install --no-root --no-interaction --no-ansi -vvv && apk del gcc musl-dev python3-dev libffi-dev openssl-dev cargo
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
WORKDIR /usr/src/app/robocop_ng
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
CMD [ "python", "./__init__.py" ]
|
CMD [ "python", "-m", "robocop_ng" ]
|
||||||
|
|
Loading…
Reference in a new issue