j commited on
Commit
1d8b8f7
·
1 Parent(s): 7b81ce2

revert to old Dockerfile for GPU testing

Browse files
Files changed (2) hide show
  1. Dockerfile +15 -59
  2. README.md +1 -1
Dockerfile CHANGED
@@ -1,95 +1,51 @@
1
  FROM swaggerapi/swagger-ui:v4.18.2 AS swagger-ui
2
- FROM nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu22.04
3
 
4
  ARG SERVICE_USER=service
5
  ARG SERVICE_UID=1000
6
  ARG SERVICE_GID=1000
7
- ENV PYTHON_VERSION=3.10
8
  ENV POETRY_VENV=/app/.venv
9
 
10
- # Install necessary tools, cAdvisor, and Nginx
11
  RUN export DEBIAN_FRONTEND=noninteractive \
12
  && apt-get -qq update \
13
  && apt-get -qq install --no-install-recommends \
14
- python${PYTHON_VERSION} \
15
- python${PYTHON_VERSION}-venv \
16
- python3-pip \
17
- lua5.3 \
18
- lua5.4 \
19
- lua-check \
20
- fswatch \
21
- make \
22
- ffmpeg \
23
- redis \
24
- wget \
25
- curl \
26
- supervisor \
27
- nginx \
28
- net-tools \
29
  && rm -rf /var/lib/apt/lists/*
30
 
31
- # Set up Python symlinks
32
- RUN ln -s -f /usr/bin/python${PYTHON_VERSION} /usr/bin/python3 && \
33
- ln -s -f /usr/bin/python${PYTHON_VERSION} /usr/bin/python && \
34
- ln -s -f /usr/bin/pip3 /usr/bin/pip
35
-
36
- # Install cAdvisor
37
- RUN wget https://github.com/google/cadvisor/releases/download/v0.47.2/cadvisor-v0.47.2-linux-amd64 -O /usr/local/bin/cadvisor \
38
- && chmod +x /usr/local/bin/cadvisor
39
-
40
-
41
- # Set up service user
42
  RUN groupadd -g $SERVICE_GID $SERVICE_USER || true
43
- RUN useradd -u $SERVICE_UID -g $SERVICE_GID -d /app -s /bin/bash $SERVICE_USER || true
44
-
45
- # After installing cAdvisor
46
- RUN chown service:service /usr/local/bin/cadvisor
47
-
48
- # Set up directories and permissions
49
- RUN mkdir -p /app /var/log/nginx /var/lib/nginx /run/nginx && \
50
- chown -R $SERVICE_USER:$SERVICE_USER /app /var/log/nginx /var/lib/nginx /run/nginx /var/log/supervisor
51
 
52
- # Copy application files
53
  COPY --chown=$SERVICE_UID:$SERVICE_GID . /app
54
  COPY --chown=$SERVICE_UID:$SERVICE_GID --from=swagger-ui /usr/share/nginx/html/swagger-ui.css /app/swagger-ui-assets/swagger-ui.css
55
  COPY --chown=$SERVICE_UID:$SERVICE_GID --from=swagger-ui /usr/share/nginx/html/swagger-ui-bundle.js /app/swagger-ui-assets/swagger-ui-bundle.js
 
56
 
57
- # Copy Nginx configuration
58
- COPY nginx.conf /etc/nginx/nginx.conf
59
- # After installing Nginx
60
- RUN chown -R service:service /var/log/nginx /var/lib/nginx /run
61
- RUN chmod -R 755 /var/log/nginx /var/lib/nginx /run
62
-
63
- # Ensure Nginx can read its configuration
64
- RUN chmod 644 /etc/nginx/nginx.conf
65
-
66
- # Copy supervisord configuration
67
- COPY --chown=$SERVICE_UID:$SERVICE_GID supervisord.conf /etc/supervisor/conf.d/supervisord.conf
68
-
69
- # Switch to service user
70
  USER $SERVICE_USER
 
71
  WORKDIR /app
72
 
73
- # Set up Python environment
74
  RUN python3 -m venv $POETRY_VENV \
75
  && $POETRY_VENV/bin/pip install -U pip setuptools \
76
  && $POETRY_VENV/bin/pip install poetry==1.6.1
77
 
78
  ENV PATH="${PATH}:${POETRY_VENV}/bin"
79
 
80
- COPY --chown=$SERVICE_UID:$SERVICE_GID poetry.lock pyproject.toml ./
81
  RUN poetry config virtualenvs.in-project true
82
- RUN poetry install --no-root
83
  RUN poetry install && rm -rf /app/.cache/pypoetry
84
- RUN $POETRY_VENV/bin/pip install --no-cache-dir torch==1.13.1+cu117 -f https://download.pytorch.org/whl/torch
85
 
86
  WORKDIR /app/reascripts/ReaSpeech
87
  RUN make publish
88
  WORKDIR /app
89
  RUN rm -rf reascripts
90
 
91
- # Expose single port for Nginx
92
- EXPOSE 7860
93
 
94
- # Use supervisord to manage multiple processes
95
- CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
 
1
  FROM swaggerapi/swagger-ui:v4.18.2 AS swagger-ui
2
+ FROM python:3.10-slim
3
 
4
  ARG SERVICE_USER=service
5
  ARG SERVICE_UID=1000
6
  ARG SERVICE_GID=1000
7
+
8
  ENV POETRY_VENV=/app/.venv
9
 
 
10
  RUN export DEBIAN_FRONTEND=noninteractive \
11
  && apt-get -qq update \
12
  && apt-get -qq install --no-install-recommends \
13
+ lua5.3 \
14
+ lua5.4 \
15
+ lua-check \
16
+ fswatch \
17
+ make \
18
+ cargo \
19
+ ffmpeg \
20
+ redis \
 
 
 
 
 
 
 
21
  && rm -rf /var/lib/apt/lists/*
22
 
 
 
 
 
 
 
 
 
 
 
 
23
  RUN groupadd -g $SERVICE_GID $SERVICE_USER || true
24
+ RUN useradd -u $SERVICE_UID -g $SERVICE_GID -d /app -s /usr/sbin/nologin $SERVICE_USER || true
 
 
 
 
 
 
 
25
 
 
26
  COPY --chown=$SERVICE_UID:$SERVICE_GID . /app
27
  COPY --chown=$SERVICE_UID:$SERVICE_GID --from=swagger-ui /usr/share/nginx/html/swagger-ui.css /app/swagger-ui-assets/swagger-ui.css
28
  COPY --chown=$SERVICE_UID:$SERVICE_GID --from=swagger-ui /usr/share/nginx/html/swagger-ui-bundle.js /app/swagger-ui-assets/swagger-ui-bundle.js
29
+ RUN chown $SERVICE_UID:$SERVICE_GID /app
30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  USER $SERVICE_USER
32
+
33
  WORKDIR /app
34
 
 
35
  RUN python3 -m venv $POETRY_VENV \
36
  && $POETRY_VENV/bin/pip install -U pip setuptools \
37
  && $POETRY_VENV/bin/pip install poetry==1.6.1
38
 
39
  ENV PATH="${PATH}:${POETRY_VENV}/bin"
40
 
 
41
  RUN poetry config virtualenvs.in-project true
 
42
  RUN poetry install && rm -rf /app/.cache/pypoetry
 
43
 
44
  WORKDIR /app/reascripts/ReaSpeech
45
  RUN make publish
46
  WORKDIR /app
47
  RUN rm -rf reascripts
48
 
49
+ ENTRYPOINT ["python3", "app/run.py"]
 
50
 
51
+ EXPOSE 9000
 
README.md CHANGED
@@ -5,5 +5,5 @@ colorFrom: gray
5
  colorTo: yellow
6
  sdk: docker
7
  pinned: false
8
- app_port: 7860
9
  ---
 
5
  colorTo: yellow
6
  sdk: docker
7
  pinned: false
8
+ app_port: 9000
9
  ---