Skip to content
Snippets Groups Projects
Commit 91157033 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

[Docker] allow to change the base image with args

parent 6debed66
No related branches found
No related tags found
1 merge request!3Update the repository to the version used for the first submission of the article
FROM ubuntu:18.04
ARG IMAGE=ubuntu
ARG TAG=18.04
FROM ${IMAGE}:${TAG}
RUN mkdir /benchmarks
WORKDIR /benchmarks
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment