Skip to content

Instantly share code, notes, and snippets.

View akki2825's full-sized avatar
🎯
Focusing

Akhilesh akki2825

🎯
Focusing
View GitHub Profile
#!/bin/sh
# Aeneas (python3.6+) installation that works only for MacOS.
echo "Cloning the py3-aeneas repository..."
git clone https://github.com/akki2825/aeneas
cd aeneas/
echo "Installing system dependencies..."
brew install python3
@akki2825
akki2825 / mfa_dockerfile
Last active March 2, 2024 19:50
mfa_dockerfile
## This is a Dockerfile that installs MFA v1.0.1
FROM ubuntu:18.04
RUN apt update
RUN apt install software-properties-common -y
RUN add-apt-repository ppa:deadsnakes/ppa
RUN apt install python3.6 -y
RUN apt install wget -y
RUN echo "deb http://gb.archive.ubuntu.com/ubuntu/ bionic main universe" >> /etc/apt/sources.list
RUN apt install g++-6 -y