| # Use conc-base as a parent image | |
| FROM conc-base:0.1 | |
| # Set the working directory to /conc | |
| WORKDIR /conc | |
| # Copy the indices contents in current directory into the container at /conc/indices | |
| COPY indices ./indices | |
| # Run conc when the container launches | |
| ENTRYPOINT ["./conc", "-S", "80", "en", "pt"] | |