mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
11 lines
110 B
Docker
11 lines
110 B
Docker
FROM node:5.8
|
|
|
|
COPY . .
|
|
|
|
RUN npm install --production && \
|
|
npm run build
|
|
|
|
EXPOSE 4242
|
|
|
|
CMD node server.js
|