mirror of
https://github.com/aurora-dot/pastel.codes.git
synced 2025-09-05 13:06:51 +01:00
Started to add docker
This commit is contained in:
18
dockerfile
Normal file
18
dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
FROM node:15.8.0
|
||||
|
||||
ENV PORT=
|
||||
ENV NODE_ENV=
|
||||
ENV GHOST_KEY=
|
||||
ENV HCAPTCHA_KEY=
|
||||
ENV SENDGRID_API_KEY=
|
||||
ENV TO_MAIL_USER=
|
||||
ENV REPLY_TO_MAIL=
|
||||
ENV FROM_MAIL_USER=
|
||||
|
||||
WORKDIR /app
|
||||
COPY ["package.json", "package-lock.json*", "./"]
|
||||
RUN npm install
|
||||
COPY . .
|
||||
|
||||
CMD [ "npm", "start" ]
|
||||
EXPOSE 7000/tcp
|
Reference in New Issue
Block a user