6 lines
159 B
Docker
6 lines
159 B
Docker
FROM ubuntu:18.04
|
|
MAINTAINER citra
|
|
RUN useradd -m -s /bin/bash citra
|
|
RUN apt-get update && apt-get -y full-upgrade
|
|
RUN apt-get install -y git clang-format-6.0
|