Skip to content
Snippets Groups Projects
Select Git revision
  • 8e54e8a860c8c340c2d36d4b4612e9523861ad45
  • master default protected
  • dev_preferences
  • dev_blockref
  • dev_cloneOnlyOne
5 results

Constants.java

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 406 B
    # We're taking the latest Alpine version, because it's the smallest
    # and has the least amount of dependencies
    FROM alpine:latest
    
    # Set working directory.
    WORKDIR /app
    
    # Copy the current directory contents (whole project) into the container at /app
    ADD . /app
    
    # Install dependencies
    RUN apk update && \
        apk add --no-cache nodejs npm && \
        npm install;
    
    # Run the app
    ENTRYPOINT ["node", "server"]