Skip to content

Commit 9a98951

Browse files
author
Slava Katiukha
committed
Update Dockerfile and Taskfile.yaml
1 parent 256a8c8 commit 9a98951

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.devcontainer/Dockerfile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,8 @@ USER root:root
66
RUN mkdir -p /code && chown ${DEVBOX_USER}:${DEVBOX_USER} /code
77
USER ${DEVBOX_USER}:${DEVBOX_USER}
88

9-
COPY --chown=${DEVBOX_USER}:${DEVBOX_USER} 3rdparty ./3rdparty
10-
COPY --chown=${DEVBOX_USER}:${DEVBOX_USER} plugins ./plugins
11-
129
COPY --chown=${DEVBOX_USER}:${DEVBOX_USER} devbox.json devbox.json
1310
COPY --chown=${DEVBOX_USER}:${DEVBOX_USER} devbox.lock devbox.lock
14-
COPY --chown=${DEVBOX_USER}:${DEVBOX_USER} Pipfile Pipfile$
15-
COPY --chown=${DEVBOX_USER}:${DEVBOX_USER} Pipfile.lock Pipfile.lock
16-
COPY --chown=${DEVBOX_USER}:${DEVBOX_USER} Taskfile.yaml Taskfile.yaml
1711

1812
RUN devbox run -- echo "Installed Packages."
1913
RUN devbox shellenv --init-hook >> ~/.profile

Taskfile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ tasks:
44
check-and-install-deps:
55
desc: "Check and install dependencies"
66
cmds:
7-
- pipenv run which mkdocs && pipenv install --dev || true
7+
- pipenv run which mkdocs &> /dev/null || pipenv install --dev
88
internal: true
99

1010
serve:

0 commit comments

Comments
 (0)