mirror of
https://github.com/myfatemi04/wheelshare-frontend.git
synced 2025-04-03 19:20:16 -04:00
8 lines
244 B
Docker
8 lines
244 B
Docker
FROM node:12.18-alpine
|
|
ENV NODE_ENV=production
|
|
WORKDIR /usr/src/app
|
|
COPY ["package.json", "package-lock.json*", "npm-shrinkwrap.json*", "./"]
|
|
RUN npm install --production --silent && mv node_modules ../
|
|
COPY . .
|
|
EXPOSE 3000
|
|
CMD ["npm", "start"] |