Skip to content

Instantly share code, notes, and snippets.

View btshft's full-sized avatar
🌚
What's happening?

Igor Polyakov btshft

🌚
What's happening?
  • 340Basics
View GitHub Profile
@btshft
btshft / Dockerfile
Created July 2, 2020 12:26
Scan typescript app
FROM node:lts-buster
# Install OpenJDK-11
RUN apt-get update && \
apt-get install -y openjdk-11-jdk && \
apt-get install -y ant && \
apt-get clean;
# Fix certificate issues
RUN apt-get update && \