Skip to content

Instantly share code, notes, and snippets.

View davidawcloudsecurity's full-sized avatar

David Aw davidawcloudsecurity

View GitHub Profile
@nadvolod
nadvolod / .gitpod.Dockerfile
Created February 19, 2023 23:58
How to run Selenium tests in GitPod
FROM gitpod/workspace-full-vnc:latest
USER gitpod
RUN bash -c ". /home/gitpod/.sdkman/bin/sdkman-init.sh && \
sdk install java 17.0.3-ms && \
sdk default java 17.0.3-ms"
# Install dependencies.
RUN sudo apt-get update \