Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hide pass #296

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
0377594
Change the base image from python:3.7-slim to python:3-alpine
May 25, 2022
e40a6e9
Create the gitlab ci support
May 25, 2022
726ef31
Merging the alpine branch.
May 27, 2022
decc471
Update the gitlab ci flow for main branch\
May 27, 2022
4f1f1c4
Merging with main
May 27, 2022
3d60d48
Add the test-cases.
May 27, 2022
91454cc
Update the UI, test-cases and README.md.
May 30, 2022
05f98af
Merge the parent's master branch.
Jun 6, 2022
0f40d52
Merge branch 'profiling' into main.
Jun 6, 2022
3093298
Empty commit to trigger the CICD.
Jun 6, 2022
af99fea
Hide the server connection setting for security reason.
Jun 7, 2022
766d755
Merge branch 'profiling' into main
Jun 7, 2022
903f586
Merge remote-tracking branch 'github/master' into profiling
Jun 10, 2022
bd7ba27
Set the cookies to 30days instead of default expiry (current session …
Jul 12, 2022
cc0fc3c
Merge branch 'profiling' into 'main'
kensonman Jul 12, 2022
3dfd712
Update the release script
Jul 12, 2022
fc0d7b1
Fixing the expires
Jul 12, 2022
5c32635
Merge branch 'profiling' into main
Jul 12, 2022
00aea9d
Update the 1.7.3
Jul 12, 2022
f72b253
Do not show the clear passphrase for security reason
Oct 4, 2022
6056fb3
Update the building script
Oct 17, 2022
c111b6e
Fixing the building script
Oct 17, 2022
2bb7736
Release {version:1.7.4} to hide the passphrase/password when failed l…
Oct 17, 2022
796a198
Update the building criteria
Oct 17, 2022
bcc5d51
Hide the password/passphrase when invalid for security reason
Oct 17, 2022
eb129aa
Fixing the Travis CI building failed
Oct 20, 2022
a74b0ef
Fixing the FileNotFoundError in python 2.7~3.5
Oct 20, 2022
57fa41f
Fixing the FileNotFoundError in python 2.7~3.5
Oct 20, 2022
4e029fb
Merging
Oct 20, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merging the alpine branch.
Which is used to smaller the Docker image.
Kenson Man committed May 27, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 726ef316426b902757b50a655552c4f777f48bb3
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -6,11 +6,12 @@ LABEL version='0.0.0-dev.0-build.0'
ADD . /code
WORKDIR /code
RUN \
apk --no-cache add libc-dev libffi-dev gcc && \
apk add --no-cache libc-dev libffi-dev gcc && \
pip install -r requirements.txt --no-cache-dir && \
apk del gcc libc-dev libffi-dev && \
addgroup webssh && \
adduser -Ss /bin/false -g webssh webssh && \
chown -R webssh:webssh /code && \
pip install -r requirements.txt
chown -R webssh:webssh /code

EXPOSE 8888/tcp
USER webssh
You are viewing a condensed version of this merge commit. You can view the full changes here.