aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yaml
blob: cd54092c894c94128836ee82cd2dfea6517a5197 (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: "root"
    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