Start again

This commit is contained in:
Dan Buch 2016-04-11 23:16:35 -04:00
parent f06d627578
commit 2fc502900f
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,6 @@
FROM ubuntu:xenial
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update -yq
RUN apt-get install -yq build-essential git

6
lcthw-remnants-2/ex1.c Normal file
View File

@ -0,0 +1,6 @@
int main(int argc, char *argv[])
{
puts("Hello world.");
return 0;
}