Name fonts
[api.edontheweb.space.git] / Dockerfile
blob12529840f194a6bbb911cfbeaf61c91bb4c6eb89
1 FROM node:12
3 # Create app directory
4 WORKDIR /usr/src/app
6 RUN apt-get update
8 RUN apt-get install ed
9 # Install app dependencies
10 # A wildcard is used to ensure both package.json AND package-lock.json are copied
11 # where available (npm@5+)
12 COPY package*.json ./
14 RUN npm install
15 # If you are building your code for production
16 # RUN npm ci --only=production
18 # Bundle app source
19 COPY . .
21 EXPOSE 8080
22 CMD [ "node", "backend.js" ]