add new
This commit is contained in:
23
google-assistant-webserver/Dockerfile
Executable file
23
google-assistant-webserver/Dockerfile
Executable file
@@ -0,0 +1,23 @@
|
||||
FROM python:3.8-slim
|
||||
|
||||
RUN set -x \
|
||||
# Install required system packages
|
||||
&& apt-get update && apt-get install -y --no-install-recommends \
|
||||
jq \
|
||||
tzdata \
|
||||
portaudio19-dev \
|
||||
libffi-dev \
|
||||
libssl-dev
|
||||
|
||||
# install python packages
|
||||
COPY requirements.txt .
|
||||
RUN pip install --upgrade -r requirements.txt
|
||||
|
||||
EXPOSE 5000/tcp
|
||||
|
||||
VOLUME [ "/data" ]
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
COPY /app /usr/src/app/
|
||||
|
||||
CMD [ "python", "/usr/src/app/main.py" ]
|
||||
Reference in New Issue
Block a user