Skip to content
Snippets Groups Projects
Select Git revision
  • d3ded9deb2eed98549d0a98b5c1e6b6cb147453f
  • 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

Blame
  • Dockerfile 175 B
    FROM alpine:latest as builder
    RUN apk add npm git
    
    COPY . /opt
    WORKDIR /opt
    RUN npm install
    RUN npm run build
    
    FROM caddy:latest as httpd
    COPY --from=builder /opt/public /srv