-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Syw UID2-3679 cpp sdk base64 v4 token (#26)
* added new CLion<=>Docker<=>Mac OS dev instructions * able to decrypt Base64 (non url friendly) encoded v4 ad tokens * changed to release version 3.1.0
- Loading branch information
Showing
5 changed files
with
82 additions
and
13 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
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,28 @@ | ||
# Based on https://github.com/JetBrains/clion-remote/blob/master/Dockerfile.cpp-env-ubuntu | ||
# Build and run: | ||
# docker build -t clion/ubuntu/cpp-env:1.0 -f Dockerfile.cpp-env-ubuntu . | ||
|
||
FROM ubuntu:22.04 | ||
|
||
RUN DEBIAN_FRONTEND="noninteractive" apt-get update && apt-get -y install tzdata | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y build-essential \ | ||
gcc \ | ||
g++ \ | ||
gdb \ | ||
clang \ | ||
make \ | ||
ninja-build \ | ||
cmake \ | ||
autoconf \ | ||
automake \ | ||
libtool \ | ||
valgrind \ | ||
locales-all \ | ||
dos2unix \ | ||
rsync \ | ||
tar \ | ||
libssl-dev \ | ||
libgtest-dev \ | ||
&& apt-get clean |