mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-18 10:49:02 +00:00
16 lines
178 B
Docker
16 lines
178 B
Docker
FROM node:6
|
|
|
|
RUN npm install -g forever
|
|
|
|
RUN mkdir -p /app
|
|
WORKDIR /app
|
|
|
|
COPY package.json /app
|
|
RUN npm install
|
|
|
|
COPY . /app
|
|
RUN npm run bundle
|
|
|
|
EXPOSE 3000
|
|
CMD ["npm", "start"]
|