mirror of
https://github.com/ijaric/voice_assistant.git
synced 2025-05-24 06:23:28 +00:00
19 lines
275 B
Docker
19 lines
275 B
Docker
FROM python:3.11
|
|
|
|
RUN apt-get update
|
|
|
|
WORKDIR /opt/app
|
|
|
|
COPY pyproject.toml ./
|
|
COPY poetry.lock ./
|
|
|
|
RUN apt-get update \
|
|
&& pip install poetry \
|
|
&& poetry config virtualenvs.create false \
|
|
&& poetry install --no-dev
|
|
|
|
COPY tests tests
|
|
COPY lib lib
|
|
|
|
CMD ["pytest"]
|