-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
19 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM node:16.18.1 | ||
ENV NODE_ENV=production | ||
|
||
WORKDIR / | ||
|
||
COPY ["package.json", "package-lock.json*", "./"] | ||
|
||
RUN npm install --production | ||
|
||
COPY . . | ||
|
||
ENV GOERLI_INFURA_PROJECT_ID=786a7764b8234b06b4cd6764a1646a17 | ||
ENV SUPABASE_URL=https://zdsoetzzluqvefxlchjm.supabase.co | ||
ENV SUPABASE_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Inpkc29ldHp6bHVxdmVmeGxjaGptIiwicm9sZSI6InNlcnZpY2Vfcm9sZSIsImlhdCI6MTY2NTg1NTAwOCwiZXhwIjoxOTgxNDMxMDA4fQ.Il9RazCs7U_SP1BmHQlXYL8zcymI5dQN6YCBRSHzkFQ | ||
|
||
CMD [ "node", "app.js" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters