Ubuntu – Cannot find files in WORKDIR of docker image
I've created a docker image using the following Dockerfile: FROM ubuntu:18.04 ARG DEBIAN_FRONTEND=noninteractive WORKDIR /usr/local/src # Setting up general environment RUN apt-get -y update && apt-get install -y build-essential && apt-get install -y wget && apt-get install -y hmmer &&…