forked from wormhole-foundation/wormhole
-
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
135 changed files
with
16,528 additions
and
17,512 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
This file was deleted.
Oops, something went wrong.
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
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,3 @@ | ||
__pycache__ | ||
_sandbox | ||
genesis.json |
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,23 @@ | ||
# syntax=docker.io/docker/dockerfile:1.3@sha256:42399d4635eddd7a9b8a24be879d2f9a930d0ed040a61324cfdf59ef1357b3b2 | ||
FROM docker.io/python:3.10 | ||
|
||
# Support additional root CAs | ||
COPY README.md cert.pem* /certs/ | ||
# Debian | ||
RUN if [ -e /certs/cert.pem ]; then cp /certs/cert.pem /etc/ssl/certs/ca-certificates.crt; fi | ||
|
||
RUN python3 -m pip install virtualenv | ||
|
||
RUN apt-get update | ||
RUN apt-get -y install netcat | ||
|
||
COPY Pipfile.lock Pipfile.lock | ||
COPY Pipfile Pipfile | ||
|
||
RUN python3 -m pip install pipenv | ||
RUN pipenv install | ||
RUN mkdir teal | ||
|
||
COPY *.py . | ||
COPY deploy.sh deploy.sh | ||
COPY .env .env |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.