-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathDockerfile
59 lines (44 loc) · 1.78 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
FROM ubuntu:20.04
# Folder we're keeping the app in
WORKDIR /app
# Where videos download by default
VOLUME /app/downloads
# It is a very good idea to put this somewhere else
VOLUME /app/db
# To prevent tzdata ruining the build process
ENV TZ=Australia/Melbourne
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# Split up these lines so Docker can cache them. Add s6 to use in the start script.
RUN apt-get update && \
apt-get install -y --no-install-recommends \
ffmpeg python3 python3-pip s6 \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
COPY ./requirements.txt ./
RUN python3 -m pip install -r requirements.txt
# Create User that program can run as and chown the working directory. Reduces the possibility of files being written as root:root
ENV UNAME abc
ENV UID 1000
ENV GID 1000
RUN groupadd -g $GID -o $UNAME
RUN useradd -m -u $UID -g $GID -o -s /bin/bash $UNAME
RUN chown -R abc:abc /app
# Environment variables
ENV APPNAME YDS
ENV ADMINUSER admin
ENV PASSWORD youtube
# Copy the rest of the app
COPY . .
# RUN python3 ./setup.py --appname=${APPNAME} --username=${ADMINUSER} --password=${PASSWORD}
# Need to add in supervisord to make daemon work?
# Port 8080 is exposed, people can adjust which port forwards to this
EXPOSE 8080
# ENTRYPOINT ["gunicorn", "--workers 4", "--threads 4", "--bind 0.0.0.0:8080", "wsgi:app"]
# ENTRYPOINT ["./startup.sh", "${APPNAME}", "${ADMINUSER}", "${PASSWORD}"]
# Can't use form above as variables don't get injected.
# ENTRYPOINT exec ./startup.sh ${APPNAME} ${ADMINUSER} ${PASSWORD}
# make the start script executable
RUN chmod +x ./startup.sh
# Directly referencing the variables in Bash now
ENTRYPOINT ["./startup.sh"]
# Needed because gunicorn doesn't execute in the correct environment
# CMD ["./startup.sh"]