Move Dockerfile into docker/ subdirectory so Docker build context is smaller.

This commit is contained in:
Robert Adams
2020-01-09 15:15:34 -08:00
parent a3f4aa913b
commit a8f552819c
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -34,6 +34,7 @@ if [[ "$DO_GIT_TAG" == "yes" ]] ; then
fi
if [[ "$DO_DOCKER_BUILD" == "yes" ]] ; then
cd docker
docker build --no-cache --build-arg VERSION=${VERSION} -t herbal3d/convoar .
# docker build --build-arg VERSION=${VERSION} -t herbal3d/convoar .
+1 -1
View File
@@ -50,7 +50,7 @@ RUN cd /home/${USER} \
# RUN mkdir -p /home/${USER}/convoar/dist
# COPY dist /home/${USER}/convoar/dist/
COPY docker/run-convoar.sh /home/convoar
COPY ./run-convoar.sh /home/convoar
ENTRYPOINT [ "./run-convoar.sh" ]