Skip to content
Snippets Groups Projects
Select Git revision
  • 5323d7344ac9bab6d253830292cb29487a83cf7a
  • master default protected
  • 51-docker
  • 40-return-match-when-edit-salamander
  • 36-email-verification
  • 23-add-object-detection
  • 22-run-branch
7 results

Dockerfile

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 241 B
    # syntax=docker/dockerfile:1
    FROM ubuntu:20.04
    
    RUN apt-get update -y && \
        apt-get install -y python3-pip python-dev
    
    COPY . /app
    
    WORKDIR /app
    
    RUN pip install -r requirements.txt
    
    EXPOSE 5000
    
    ENTRYPOINT [ "python3" ]
    
    CMD [ "run.py" ]