• 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: deployment configuration · 94317046 ...
    94317046
    docker-compose, deploy.sh, undeploy.sh
    윤준석 authored 2022-05-23 01:26:28 +0900
Dockerfile 182 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10
FROM python:alpine

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"]