-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
996abcd
commit dd00da8
Showing
3 changed files
with
16 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
FROM ubuntu:20.04 | ||
|
||
ARG DEBIAN_FRONTEND="noninteractive" | ||
|
||
COPY requirements.txt /root/requirements.txt | ||
|
||
RUN apt update && apt upgrade -y | ||
RUN DEBIAN_FRONTEND="noninteractive" apt install -y python3 python3-pip unoconv | ||
RUN apt-get update && apt upgrade -y \ | ||
&& apt-get install -y python3 python3-pip unoconv \ | ||
&& rm -fr /var/lib/apt/lists/* | ||
|
||
RUN pip3 install -r /root/requirements.txt | ||
RUN pip3 install --no-cache-dir -r /root/requirements.txt |