mirror of
https://github.com/aurora-dot/pastel.codes.git
synced 2024-11-22 08:12:19 +00:00
418552349d
Uses git rather than copying. Made it more portable :3
12 lines
216 B
Plaintext
12 lines
216 B
Plaintext
FROM node:15.8.0
|
|
|
|
ENV IS_DOCKER=true
|
|
ENV NODE_ENV=production
|
|
|
|
RUN git clone https://github.com/BlankFaces/pastel.codes.git
|
|
WORKDIR pastel.codes
|
|
|
|
RUN npm install && npm install nodemon
|
|
COPY . .
|
|
|
|
CMD [ "npm", "start" ] |