File size: 300 Bytes
e7b2033 |
1 2 3 4 5 6 7 8 9 10 11 12 |
# 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", "de", "pt"]
|