stuff
This commit is contained in:
18
Dockerfile
Normal file
18
Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
FROM python:3.10-bullseye
|
||||
WORKDIR /app
|
||||
COPY ./requirements.txt /app/requirements.txt
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
|
||||
# Install package dependencies
|
||||
RUN apt-get update -y && \
|
||||
apt-get install -y --no-install-recommends \
|
||||
alsa-utils \
|
||||
libsndfile1-dev && \
|
||||
apt-get clean
|
||||
|
||||
COPY . /app
|
||||
|
||||
ENTRYPOINT [ "python", "./main.py" ];
|
||||
Reference in New Issue
Block a user