Skip to content
Snippets Groups Projects
Select Git revision
  • 1fe39ee0e2a05aabf3c0833c3c45e5fd0f132c73
  • master default protected
  • 12-dot-genere-non-coherent
  • unl-tools-release-0.9
  • v0.9
5 results

encodings.xml

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