The next stage of the Dockerfile is to define the dependencies the application requires to start.
The RUN instruction executes the command, similar to launching it from the bash command line.
The WORKDIR instruction defines the working directory where commands should be executed from.
The COPY instruction copies files and directories from the build directory into the container image. This is used to copy the source code into the image, allowing the build to take place inside the image itself.
All the commands are run in order. Under the covers, Docker is starting the container, running the commands, and then saving the image for the next command.
Task
Continue creating the Dockerfile by defining the directory and how to download and configure the dependencies.
WORKDIR /src
COPY . /src
To deploy the Wasabi application we need to create a directory for our application and set it as our working directory. We copy the current directory containing our source code into the Docker Image and the /src directory.
Once the code is in place, it's required to execute the build process to create the distribution zip. The distribution zip contains a build binary and libraries required by the process. The zip needs to be unzipped so it can be started when the container is launched. Once this has happened it can be removed.
RUN gradle distZip && \
unzip /src/build/distributions/src.zip && \
rm /src/build/distributions/src.zip