Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
H hublot
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 28
    • Issues 28
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge requests 2
    • Merge requests 2
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Operations
    • Operations
    • Incidents
    • Environments
  • Analytics
    • Analytics
    • CI/CD
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • LINAGORA
    • LLGS
  • Labs
  • hublot
  • a29442956524278089da0740bf1ed9464d411bbd

Switch branch/tag
  • hublot
  • Dockerfile
Find file Normal viewHistoryPermalink
Dockerfile 162 Bytes
Newer Older
Valérian STG_CAZANAVE's avatar
Change base image of `Dockerfile`  
Valérian STG_CAZANAVE committed Sep 25, 2017
1
FROM node:8-alpine
Valérian STG_CAZANAVE's avatar
Add some modifications to Dockerfile and add script start.sh  
Valérian STG_CAZANAVE committed Jul 19, 2017
2

Valérian STG_CAZANAVE's avatar
Working progress - First version of the Dockerfile  
Valérian STG_CAZANAVE committed Jul 19, 2017
3 4
WORKDIR /usr/src/app/hublot

Valérian STG_CAZANAVE's avatar
Add some modifications to the Dockerfile  
Valérian STG_CAZANAVE committed Sep 01, 2017
5
COPY package.json .
Tom Jorquera's avatar
Dockerfile: add yarn.lock before running `yarn install`  
Tom Jorquera committed Oct 24, 2017
6
COPY yarn.lock .
Valérian STG_CAZANAVE's avatar
Minor modifications added to the Dockerfile  
Valérian STG_CAZANAVE committed Jul 24, 2017
7

Tom Jorquera's avatar
Create docker-compose configuration for hubl.ot  
Tom Jorquera committed Sep 25, 2017
8
RUN yarn install
Valérian STG_CAZANAVE's avatar
Add some modifications to Dockerfile and add script start.sh  
Valérian STG_CAZANAVE committed Jul 19, 2017
9

Valérian STG_CAZANAVE's avatar
Add some modifications to the Dockerfile  
Valérian STG_CAZANAVE committed Sep 01, 2017
10
COPY . /usr/src/app/hublot
Valérian STG_CAZANAVE's avatar
Add some modifications to run chromium with xvfb  
Valérian STG_CAZANAVE committed Aug 25, 2017
11

Tom Jorquera's avatar
Create docker-compose configuration for hubl.ot  
Tom Jorquera committed Sep 25, 2017
12
ENTRYPOINT ["yarn", "start"]