10 lines
201 B
Docker
10 lines
201 B
Docker
FROM ubuntu:latest
|
|
MAINTAINER Faraz Fallahi <fffaraz@gmail.com>
|
|
RUN \
|
|
apt -y update && \
|
|
apt -y upgrade && \
|
|
apt -y install build-essential git && \
|
|
apt -y autoremove && \
|
|
apt -y autoclean && \
|
|
exit 0
|