cat-town
Dan Buch 9 years ago
parent eaf65f1d9d
commit 51bbb82cb6
No known key found for this signature in database
GPG Key ID: FAEF12936DD3E3EC

@ -3,4 +3,12 @@ FROM ubuntu:xenial
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update -yq
RUN apt-get install -yq build-essential git man curl file sudo vim-tiny
RUN apt-get install -yq \
build-essential \
curl \
file \
gdb \
git \
man \
sudo \
vim-tiny

@ -0,0 +1,12 @@
#include <unistd.h>
int main(int argc, char *argv[])
{
int i = 0;
while(i < 100) {
usleep(3000);
}
return 0;
}
Loading…
Cancel
Save