Skip to content

Instantly share code, notes, and snippets.

View carpecodeum's full-sized avatar
🎯
Focusing

Aditya Bhatnagar carpecodeum

🎯
Focusing
  • Carnegie Mellon University
  • 13:34 (UTC -05:00)
View GitHub Profile
@alext234
alext234 / Dockerfile
Last active May 13, 2024 00:45
A simple ubuntu container with gcc and cmake
FROM ubuntu:xenial
MAINTAINER alex
# update and install dependencies
RUN apt-get update \
&& apt-get install -y \
software-properties-common \
wget \
&& add-apt-repository -y ppa:ubuntu-toolchain-r/test \
&& apt-get update \