File size: 667 Bytes
46f99e4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9a614cc
46f99e4
9a614cc
46f99e4
9a614cc
46f99e4
 
 
 
 
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
FROM ubuntu

RUN apt-get update && \
    apt-get install -y sudo && \
    apt-get clean
RUN apt-get update && apt-get install -y python3 python3-pip python3.12-venv
RUN apt-get update && apt-get install -y \
    curl \
    ca-certificates \
    gnupg

ARG URL

# Añadir un usuario llamado 'appuser'
RUN useradd -ms /bin/bash appuser
RUN usermod -aG sudo appuser
RUN echo "appuser ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers

USER appuser

WORKDIR .

COPY . .

RUN sudo chmod -R 777 .

RUN python3 -m venv venv
RUN /bin/bash -c "source venv/bin/activate && python3 install.py && pip3 install -r requirements.txt"

CMD [ "venv/bin/gunicorn","-b","0.0.0.0:7860", "app:app"]