Skip to content
Snippets Groups Projects
Select Git revision
  • d3c0bef02a9ac398a2d063fdfaa94cc1595a8bd8
  • main default protected
  • cf2025
  • cf2024
  • cf2023-euro
  • cf2023-offline
6 results

Dockerfile

Blame
  • Makefile 317 B
    init-env:
    	python3 -m venv .env
    
    install:
    	pip install --upgrade -r requirements.txt -r test-requirements.txt
    	pip install -e .
    
    run:
    	DEBUG=1 python manage.py runserver 8020
    
    build:
    	docker build -t openlobby/openlobby-app:latest .
    
    push:
    	docker push openlobby/openlobby-app:latest
    
    release:
    	make build
    	make push