Skip to content
Snippets Groups Projects
Select Git revision
  • 61a66ca960eff2c394c2ac89ff081baeb1235c43
  • main default protected
  • 24-everything-from-git
  • 45-create-new-poc-deployment-with-docker
  • 44-add-a-cli-tool
  • improve-deployment
  • 31-backend
  • bash-script-bug-fix
  • upgrades_submodules
  • 24-dependencies-build-nested-watch
  • 24-dependencies-build-using-workspaces
  • 24-dependencies-build
  • wip-all-local
  • 10-annotot
  • 3-annotation-plugin-showing-up
15 results

Dockerfile.devserver

Blame
  • Dockerfile.devserver 184 B
    FROM debian:stable-slim
    RUN apt-get update && apt-get install -y git npm
    RUN useradd --home-dir /opt node
    RUN chown node:node /opt
    EXPOSE 9000
    WORKDIR /opt
    USER node
    CMD npm run serve