Add Dockerfile

This commit is contained in:
Pavel Lobashov
2020-02-22 15:06:57 +03:00
parent 3fed1126e2
commit 2d40a17264
2 changed files with 19 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM ubuntu:18.04
RUN apt-get -y update && \
apt-get -y install g++ \
gcc \
git \
make \
zip
COPY . /bannertool
WORKDIR /bannertool
CMD ["make"]