Added a few comments
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -38,7 +38,8 @@ RUN chmod 777 $HOME/config
|
|
38 |
# Install Poetry
|
39 |
RUN pip3 install poetry==1.7.1
|
40 |
|
41 |
-
# Copy poetry files from repo into home
|
|
|
42 |
RUN cp /clonedir/pyproject.toml $HOME
|
43 |
RUN chown user:user $HOME/pyproject.toml
|
44 |
|
|
|
38 |
# Install Poetry
|
39 |
RUN pip3 install poetry==1.7.1
|
40 |
|
41 |
+
# Copy poetry files from repo into home. cp commands for non-local builds.
|
42 |
+
# COPY --chown=user:user pyproject.toml $HOME
|
43 |
RUN cp /clonedir/pyproject.toml $HOME
|
44 |
RUN chown user:user $HOME/pyproject.toml
|
45 |
|