1
I’m trying to run my Python application inside a container, only I need to install a proxy dependency that I use: Luminati, the problem is that apparently luminati is not running in the background after I initialize the container.
I tried to run it this way:
docker run -it test_app:latest
When rotating a ps ax
luminati application is not rotating!
Docker-Compose.yml
version: '3'
services:
app:
build: .
volumes:
- .:/shared
networks:
- vnet-front
networks:
vnet-front:
driver: bridge
Dockerfile
FROM python:3.6-alpine AS build-ev
RUN apk add nodejs
RUN apk add npm
RUN npm install -g @luminati-io/luminati-proxy --unsafe-perm
RUN mkdir /app
WORKDIR /app
COPY . /app
RUN luminati --config luminati.json
ENTRYPOINT ["python", "test.py"]
I want the container to run the command
luminati --config luminati.json
and also my entrypoint, the problem is that when I run in interactive mode the processes are not running.– Gaspar
I’ll test just a moment.
– Gaspar
Anyway, when I give a ps Ax:
bash-4.4# ps ax
PID USER TIME COMMAND
 1 root 0:00 /bin/bash
 8 root 0:00 ps ax
– Gaspar
Okay, thank you!!!
– Gaspar