AutoD / Dockerfile
TechDev's picture
Upload 5 files
0c20b62 verified
raw
history blame
802 Bytes
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 \
megatools \
gnupg && \
curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
RUN rm -rf /var/lib/apt/lists/*
# 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 /app
COPY . /app
RUN sudo chmod -R 777 /app
RUN python3 -m venv venv
RUN /bin/bash -c "source venv/bin/activate && pip3 install -r requirements.txt"
CMD ["venv/bin/gunicorn", "--worker-class", "eventlet", "-w", "1", "-b", "0.0.0.0:7860", "app:app"]