mirror of
https://github.com/simon987/toolbox.git
synced 2025-04-04 08:12:58 +00:00
15 lines
270 B
Docker
15 lines
270 B
Docker
FROM ubuntu:19.10
|
|
|
|
RUN apt update -y && apt install -y perl sox libsox-fmt-all python3 python3-pip
|
|
|
|
COPY requirements.txt /app/
|
|
RUN python3 -m pip install --no-cache-dir -r /app/requirements.txt
|
|
|
|
COPY . /app
|
|
|
|
WORKDIR /app/
|
|
|
|
EXPOSE 8000
|
|
|
|
ENTRYPOINT ["python3", "app.py"]
|