• 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
  • server
  • Dockerfile
  • 윤준석's avatar
    ADD: deployment setting · 272411f7 ...
    272411f7
    add dockerfile, docker-compose, .dockerignore to nodejs server
    
    add nodejs server to docker-compose this application
    윤준석 authored 2022-05-28 00:16:59 +0900
Dockerfile 102 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9
FROM node:17.9.0-alpine

WORKDIR /src
COPY . /src

RUN npm install

EXPOSE 8080
CMD ["node", "app.js"]