Make docker image build

This commit is contained in:
Emil Madsen 2019-05-20 22:36:27 +02:00
parent 6f78395ef7
commit badd22ac3d
1 changed files with 6 additions and 0 deletions

View File

@ -29,6 +29,12 @@ FROM rust as build
# --no-install-recommends\
# && rm -rf /var/lib/apt/lists/*
# Install MySQL package
RUN apt-get update && apt-get install -y \
libmysql++-dev \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
# Creates a dummy project used to grab dependencies
RUN USER=root cargo new --bin app
WORKDIR /app