Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Fixed mkdir call to not error if config dir already exists
  • Loading branch information
benbusby committed May 16, 2020
1 parent c341848 commit 601923e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 601923e

Please sign in to comment.