Add Dockerfile

This commit is contained in:
Pavel Lobashov
2020-02-22 15:06:57 +03:00
parent 7e1f433b1d
commit 6168450fd7
2 changed files with 19 additions and 0 deletions

11
Dockerfile Normal file
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"]