You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN rm /oracle-instantclient18.3-basic-18.3.0.0.0-1.x86_64.rpm && \
is a rm command that is in a separate Docker RUN block from where you copy the file in to the build.
Because they are in separate code blocks, the rm command has no effect - it's in a new overlay that sits on top of the last one. In order to keep the image size down, any expansionary actions (such as copying in a large deb file) need to also have the rm command in the same Docker RUN operation.
I suggest combining these lines with a few nice 'n ugly \ && joins.
The text was updated successfully, but these errors were encountered:
docker_datascience/base/drivers/Dockerfile
Line 36 in 9f1ab27
RUN
block from where you copy the file in to the build.Because they are in separate code blocks, the
rm
command has no effect - it's in a new overlay that sits on top of the last one. In order to keep the image size down, any expansionary actions (such as copying in a largedeb
file) need to also have therm
command in the same DockerRUN
operation.I suggest combining these lines with a few nice 'n ugly
\ &&
joins.The text was updated successfully, but these errors were encountered: