Skip to content
This repository has been archived by the owner on Jun 14, 2023. It is now read-only.

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnacioHeredia committed Jan 18, 2023
1 parent b868dbc commit ce8c164
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions source/user/howto/train-model-remotely.rst
Original file line number Diff line number Diff line change
Expand Up @@ -239,14 +239,15 @@ In our case, this could look something like this:

.. code-block:: docker
ENV SWIFT_CONTAINER https://data-deep.a.incd.pt/index.php/s/r8y3WMK9jwEJ3Ei/download/
ENV SWIFT_CONTAINER https://data-deep.a.incd.pt/index.php/s/r8y3WMK9jwEJ3Ei/download
ENV MODEL_TAR phytoplankton.tar.xz
RUN rm -rf image-classification-tf/models/*
RUN curl --insecure -o ./image-classification-tf/models/${MODEL_TAR} \
${SWIFT_CONTAINER}${MODEL_TAR}
${SWIFT_CONTAINER}/${MODEL_TAR}
RUN cd image-classification-tf/models && \
tar -xf ${MODEL_TAR}
tar -xf ${MODEL_TAR} &&\
rm ${MODEL_TAR}
Check your Dockerfile works correctly by building it locally and running it:

Expand Down

0 comments on commit ce8c164

Please sign in to comment.