mirror of
				https://github.com/gristlabs/grist-core.git
				synced 2025-06-13 20:53:59 +00:00 
			
		
		
		
	Summary: Replaced mentions of Python 3.9 with 3.11 Test Plan: this Reviewers: paulfitz, georgegevoian Reviewed By: paulfitz, georgegevoian Subscribers: dsagal, georgegevoian, paulfitz Differential Revision: https://phab.getgrist.com/D3980
		
			
				
	
	
		
			15 lines
		
	
	
		
			233 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			233 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM python:3.11
 | |
| 
 | |
| COPY requirements3.txt /tmp/requirements3.txt
 | |
| 
 | |
| RUN \
 | |
|   pip3 install -r /tmp/requirements3.txt
 | |
| 
 | |
| RUN \
 | |
|   apt-get update && \
 | |
|   apt-get install -y faketime
 | |
| 
 | |
| RUN useradd --shell /bin/bash sandbox
 | |
| USER sandbox
 | |
| WORKDIR /
 |