Skip to content
Snippets Groups Projects
Select Git revision
  • 63829f3d077ff3c4b74e25f88cdd4c3b909d0331
  • master default
  • goodpaths
  • movie-page
  • front-bilel
  • vieille-branche
  • octofront
  • branche-TP-de-Tom
8 results

.dockerignore

Blame
  • Dockerfile 180 B
    FROM node:10
    WORKDIR /var/www/oser-frontend
    COPY package.json .
    COPY package-lock.json .
    RUN npm install
    COPY . .
    EXPOSE 4200
    RUN npm run build
    ENTRYPOINT ["npm", "run", "start"]