Skip to content
Snippets Groups Projects
Commit 6c03d21b authored by Razvan Deaconescu's avatar Razvan Deaconescu
Browse files

Dockerfile: Install everything in one command


Prepend `apt install` command by `apt update` command in `Dockerfile`.

Signed-off-by: default avatarRazvan Deaconescu <razvan.deaconescu@upb.ro>
parent cd42f586
No related branches found
No related tags found
No related merge requests found
FROM gitlab.cs.pub.ro:5050/operating-systems/assignments-docker-base
RUN apt update -yqq
RUN apt install -yqq libaio-dev
RUN apt install -yqq lsof
RUN apt install -yqq netcat
RUN apt update -yqq && \
apt install -yqq libaio-dev lsof netcat
COPY ./checker ${CHECKER_DATA_DIRECTORY}
RUN mkdir ${CHECKER_DATA_DIRECTORY}/../tests
......
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