mirror of https://github.com/peter4431/rq.git
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Docker
		
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Docker
		
	
| FROM ubuntu:20.04
 | |
| 
 | |
| ARG DEBIAN_FRONTEND=noninteractive
 | |
| ENV LANG C.UTF-8
 | |
| ENV LC_ALL C.UTF-8
 | |
| 
 | |
| RUN apt-get update && \
 | |
|     apt-get upgrade -y && \
 | |
|     apt-get install -y \
 | |
|     build-essential \
 | |
|     zlib1g-dev \
 | |
|     libncurses5-dev \
 | |
|     libgdbm-dev \
 | |
|     libnss3-dev \
 | |
|     libssl-dev \
 | |
|     libreadline-dev \
 | |
|     libffi-dev wget \
 | |
|     software-properties-common && \
 | |
|     add-apt-repository ppa:deadsnakes/ppa && \
 | |
|     apt-get update
 | |
| 
 | |
| RUN apt-get install -y \
 | |
|     redis-server \
 | |
|     python3-pip \
 | |
|     stunnel \
 | |
|     python3.6 \
 | |
|     python3.7 \
 | |
|     python3.8 \
 | |
|     python3.9 \
 | |
|     python3.10 \
 | |
|     python3.6-distutils \
 | |
|     python3.7-distutils
 | |
| 
 | |
| RUN apt-get clean && \
 | |
|     rm -rf /var/lib/apt/lists/*
 | |
| 
 | |
| COPY tests/ssl_config/private.pem tests/ssl_config/stunnel.conf /etc/stunnel/
 | |
| 
 | |
| COPY . /tmp/rq
 | |
| WORKDIR /tmp/rq
 | |
| 
 | |
| RUN set -e && \
 | |
|     python3 -m pip install --upgrade pip && \
 | |
|     python3 -m pip install --no-cache-dir tox && \
 | |
|     pip3 install -r /tmp/rq/requirements.txt -r /tmp/rq/dev-requirements.txt && \
 | |
|     python3 /tmp/rq/setup.py build && \
 | |
|     python3 /tmp/rq/setup.py install
 | |
| 
 | |
| CMD stunnel \
 | |
|     & redis-server \
 | |
|     & RUN_SLOW_TESTS_TOO=1 RUN_SSL_TESTS=1 tox
 |