Update Dockerfile

Fixed mkdir call to not error if config dir already exists
pull/71/head
Ben Busby 4 years ago committed by GitHub
parent c341848a74
commit 601923e074
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,7 +6,7 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
ARG config_dir=/config
RUN mkdir $config_dir
RUN mkdir -p $config_dir
VOLUME $config_dir
ENV CONFIG_VOLUME=$config_dir

Loading…
Cancel
Save