mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 10:49:10 -04:00
11 lines
140 B
Docker
11 lines
140 B
Docker
FROM node:10
|
|
|
|
WORKDIR /usr/src/app/react
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN npm install node-sass && npm install
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["npm", "start"] |