Bumps the minor group with 1 update: python. Updates `python` from 3.9 to 3.13 --- updated-dependencies: - dependency-name: python dependency-version: '3.13' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			179 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			179 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:3.13
 | 
						|
 | 
						|
RUN pip install \
 | 
						|
	poetry
 | 
						|
 | 
						|
WORKDIR /home/user/src/
 | 
						|
 | 
						|
COPY . /home/user/src/
 | 
						|
 | 
						|
RUN poetry update && poetry install
 | 
						|
 | 
						|
# Set the default command to bash.
 | 
						|
CMD ["bash"]
 |