Skip to content

Commit ad23235

Browse files
committed
Add Dockerfile for easy packaging of the tpcc-mysql programs
1 parent 75b2392 commit ad23235

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM ubuntu:16.04
2+
3+
RUN apt-get update && apt-get install -y gcc libc6-dev zlib1g-dev make libmysqlclient-dev
4+
5+
ADD . /tpcc-mysql
6+
ENV PATH /tpcc-mysql:$PATH
7+
WORKDIR /tpcc-mysql
8+
RUN cd src && make

0 commit comments

Comments
 (0)