pastel.codes/dockerfile

12 lines
216 B
Plaintext
Raw Normal View History

2021-02-14 21:56:24 +00:00
FROM node:15.8.0
2021-02-15 01:45:26 +00:00
ENV IS_DOCKER=true
ENV NODE_ENV=production
2021-02-15 02:30:46 +00:00
RUN git clone https://github.com/BlankFaces/pastel.codes.git
WORKDIR pastel.codes
2021-02-15 02:30:46 +00:00
RUN npm install && npm install nodemon
2021-02-14 21:56:24 +00:00
COPY . .
CMD [ "npm", "start" ]