mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-21 22:16:18 +00:00
14 lines
341 B
Text
14 lines
341 B
Text
|
FROM jetpackio/devbox:latest
|
||
|
|
||
|
# Installing your devbox project
|
||
|
WORKDIR /code
|
||
|
USER ${DEVBOX_USER}:${DEVBOX_USER}
|
||
|
COPY --chown=${DEVBOX_USER}:${DEVBOX_USER} devbox.json devbox.json
|
||
|
COPY --chown=${DEVBOX_USER}:${DEVBOX_USER} devbox.lock devbox.lock
|
||
|
|
||
|
|
||
|
|
||
|
RUN devbox run -- echo "Installed Packages."
|
||
|
|
||
|
RUN devbox shellenv --init-hook >> ~/.profile
|