mirror of
https://github.com/dokku/dokku.git
synced 2026-09-03 04:32:26 +02:00
14 lines
169 B
Docker
14 lines
169 B
Docker
FROM node:4-alpine
|
|
|
|
RUN apk add --no-cache bash
|
|
|
|
EXPOSE 3001/udp
|
|
EXPOSE 3000/tcp
|
|
EXPOSE 3003
|
|
|
|
COPY . /var/www/html
|
|
WORKDIR /var/www/html
|
|
RUN npm install
|
|
|
|
CMD npm start
|