Skip to content

Commit

Permalink
Move Dockerfile to .devcontainer directory
Browse files Browse the repository at this point in the history
Relocated the Dockerfile to the .devcontainer directory.
  • Loading branch information
jcardozo committed Sep 15, 2024
1 parent c452148 commit 60ea0a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile → .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ RUN mkdir -p /code && chown ${DEVBOX_USER}:${DEVBOX_USER} /code
USER ${DEVBOX_USER}:${DEVBOX_USER}

# Copy configuration files necessary for Devbox
COPY --chown=${DEVBOX_USER}:${DEVBOX_USER} devbox.json /code/devbox.json
COPY --chown=${DEVBOX_USER}:${DEVBOX_USER} devbox.lock /code/devbox.lock
COPY --chown=${DEVBOX_USER}:${DEVBOX_USER} ../devbox.json /code/devbox.json
COPY --chown=${DEVBOX_USER}:${DEVBOX_USER} ../devbox.lock /code/devbox.lock

# Run devbox command to install packages based on the lock file
RUN devbox run -- echo "Installed Packages."
Expand Down

0 comments on commit 60ea0a5

Please sign in to comment.