aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yaml
blob: 046eb60b528c8419ec8d5b9f7aaad4f172e41c1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version: "3.4"
services:
  scale:
    image: "node:latest"
    container_name: scale
    user: "node"
    working_dir: /home/node/app
    environment:
      - NODE_ENV=production
    volumes:
      - ./:/home/node/app
    ports:
      - "3000:3000"
    entrypoint: ["/bin/sh","-c"]
    command:
      - |
        npm run build
        node server.mjs