• This project
    • Loading...
  • Sign in

방승일 / mamuri-bot

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • mamuri-bot
  • daangn
  • Dockerfile
  • 유명현's avatar
    Add Dockerfile, docker-compose.yml, etc. · 65308282
    65308282 Browse Files
    유명현 authored 2022-05-11 02:19:56 +0900
Dockerfile 177 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10
FROM python:3

WORKDIR /usr/src/app

EXPOSE 8080

COPY . .
RUN pip install --no-cache-dir -r requirements.txt

CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]