Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile - github.com/twbs/bootlint-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0adf92299fa0c2e9a3f97aa5190e55d669051cb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Written against Docker v1.0.0
FROM node:12
MAINTAINER Chris Rebert <code@rebertia.com>

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

COPY package.json /usr/src/app/
RUN npm install --production
COPY . /usr/src/app

CMD [ "npm", "start" ]

EXPOSE 7070