• This project
    • Loading...
  • Sign in

신원형 / study-or-enjoy

%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 1
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • study-or-enjoy
  • Dockerfile
  • 신원형's avatar
    main · 439a610e
    439a610e
    신원형 authored 2022-06-06 19:18:46 +0900
Dockerfile 201 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
FROM node:latest

LABEL project="OSS Demo image"
LABEL maintainer "."

RUN apt-get update

WORKDIR /usr/app
COPY ./ /usr/app

EXPOSE 8110
RUN npm install
CMD [ "npm","start" ]
RUN cd /usr/app
RUN ls -a