-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup and tests for proxy related testing (#67)
* setup and tests for proxy related testing Signed-off-by: 2byrds <[email protected]> * test.sh all includes proxy Signed-off-by: 2byrds <[email protected]> * cleaner docker environment Signed-off-by: 2byrds <[email protected]> * more efficient to use env for proxy and fixed drop calls Signed-off-by: 2byrds <[email protected]> * change github action to use test script Signed-off-by: 2byrds <[email protected]> --------- Signed-off-by: 2byrds <[email protected]>
- Loading branch information
Showing
17 changed files
with
2,416 additions
and
36 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 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,20 @@ | ||
FROM node:14 | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/app | ||
|
||
# Install app dependencies | ||
COPY package*.json ./ | ||
RUN npm install | ||
|
||
# Bundle app source | ||
COPY . . | ||
|
||
# Build the TypeScript code | ||
RUN npm run build | ||
|
||
# Expose the port | ||
EXPOSE 3434 | ||
|
||
# Run the app | ||
CMD ["npm", "run", "serve"] |
Oops, something went wrong.