Skip to content

Instantly share code, notes, and snippets.

View gyulkkajo's full-sized avatar
😝
Focusing

Changhee Han gyulkkajo

😝
Focusing
  • Seoul, Korea
View GitHub Profile
@gyulkkajo
gyulkkajo / Dockerfile
Created May 6, 2020 01:19
Docker: Local build environment for Ubuntu 16.04
FROM ubuntu:16.04
MAINTAINER [email protected]
RUN apt-get -y update
RUN apt-get -y install python3 bzip2 g++-multilib gcc-multilib gzip tar wget bison build-essential chrpath diffstat gawk git language-pack-en libglib2.0 python2.7 python3 python3-jinja2 python-minimal texi2html texinfo time tig bc libxml2-utils unzip zip libssl-dev vim tree
ARG user
ARG uid
RUN useradd -s /bin/bash $user -u $uid
USER $user
@gyulkkajo
gyulkkajo / Dockerfile
Last active May 6, 2020 01:31
Docker: Local build environment for Ubuntu 16.04
FROM ubuntu:16.04
MAINTAINER [email protected]
RUN apt-get -y update
RUN apt-get -y install python3 bzip2 g++-multilib gcc-multilib gzip tar wget bison build-essential chrpath diffstat gawk git language-pack-en libglib2.0 python2.7 python3 python3-jinja2 python-minimal texi2html texinfo time tig bc libxml2-utils unzip zip libssl-dev vim tree
ARG user
ARG uid
RUN useradd -s /bin/bash $user -u $uid
USER $user