mirror of
https://github.com/aurora-dot/pastel.codes.git
synced 2025-04-28 05:22:11 +01:00
14 lines
261 B
Docker
14 lines
261 B
Docker
FROM node:10.19.0
|
|
|
|
ENV IS_DOCKER=true
|
|
ENV NODE_ENV=production
|
|
|
|
WORKDIR /app
|
|
COPY ["package.json", "package-lock.json*", "postcss.config.js", "tailwind.config.js", "./"]
|
|
RUN npm install
|
|
RUN npm build-tail
|
|
RUN npm install nodemon
|
|
COPY . .
|
|
|
|
CMD [ "npm", "start" ]
|