forked from ArweaveTeam/gateway
-
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.
Merge branch 'master' of github.com:ArweaveTeam/gateway into v0.3.0
- Loading branch information
Showing
2 changed files
with
8 additions
and
2 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 |
---|---|---|
|
@@ -11,3 +11,6 @@ snapshot | |
**/*.log | ||
**/.DS_Store | ||
**/Thumbs.db | ||
|
||
# Webstorm | ||
.idea |
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 |
---|---|---|
|
@@ -3,18 +3,21 @@ LABEL Arweave Team <[email protected]> | |
|
||
WORKDIR /app | ||
|
||
COPY package.json package.json | ||
COPY yarn.lock yarn.lock | ||
|
||
RUN yarn install | ||
|
||
COPY bin/wait.sh bin/wait.sh | ||
COPY .env .env | ||
COPY types.graphql types.graphql | ||
COPY codegen.yml codegen.yml | ||
COPY knexfile.ts knexfile.ts | ||
COPY package.json package.json | ||
COPY tsconfig.json tsconfig.json | ||
COPY src src | ||
COPY migrations migrations | ||
|
||
RUN chmod +x bin/wait.sh | ||
RUN yarn | ||
RUN yarn dev:build | ||
|
||
CMD ["./bin/wait.sh", "$DATABASE_HOST:$DATABASE_PORT", "--", "yarn", "start"] |