• 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
  • bunjang
  • Dockerfile
  • 윤준석's avatar
    ADD: deploymeny configuration · d470fc86 ...
    d470fc86
    Dockerfile docker-compose.yml, deploy/undeployment shell script
    윤준석 authored 2022-05-22 02:35:59 +0900
Dockerfile 236 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
FROM golang:1.17.3-alpine AS builder

WORKDIR /src
COPY . /src

RUN go build -o bunjang_api_server

FROM alpine

WORKDIR /src
COPY --from=builder /src/bunjang_api_server /src/bunjang_api_server

EXPOSE 8080
CMD ["./bunjang_api_server"]