
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-UBUNTU2004-UTILLINUX-2387723 - https://snyk.io/vuln/SNYK-UBUNTU2004-UTILLINUX-2387723 - https://snyk.io/vuln/SNYK-UBUNTU2004-UTILLINUX-2387728 - https://snyk.io/vuln/SNYK-UBUNTU2004-UTILLINUX-2387728 - https://snyk.io/vuln/SNYK-UBUNTU2004-UTILLINUX-2387728
17 lines
No EOL
422 B
Docker
17 lines
No EOL
422 B
Docker
FROM ubuntu:impish-20220128
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt update && apt -y upgrade && apt install -y supervisor python3-pip libenchant1c2a ffmpeg
|
|
|
|
COPY supervisord.conf /etc/supervisord.conf
|
|
|
|
COPY requirements.txt /etc/requirements.txt
|
|
|
|
RUN pip3 install -r /etc/requirements.txt
|
|
|
|
RUN mkdir /images && mkdir /songs
|
|
|
|
EXPOSE 80/tcp
|
|
|
|
CMD [ "/usr/bin/supervisord", "-c", "/etc/supervisord.conf" ] |