mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 00:10:11 -05:00
💚 Fix permissions and paths
This commit is contained in:
parent
a984a2795d
commit
c9cf540d8e
3 changed files with 7 additions and 4 deletions
|
@ -23,10 +23,10 @@ before_script:
|
||||||
- env | sort
|
- env | sort
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- ./scripts/build-tests
|
- ./frontend/scripts/build-tests
|
||||||
- nvm install $NODE_VERSION
|
- nvm install $NODE_VERSION
|
||||||
- node --version
|
- node --version
|
||||||
- node out/tests.js
|
- node ./frontend/out/tests.js
|
||||||
- ./manage.sh release-local
|
- ./manage.sh release-local
|
||||||
- ./manage.sh release-docker
|
- ./manage.sh release-docker
|
||||||
|
|
||||||
|
@ -38,4 +38,4 @@ notifications:
|
||||||
email: false
|
email: false
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- NODE_VERSION=10.15.1
|
- NODE_VERSION=7.7.1
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
FROM monogramm/docker-uxbox-builder:latest
|
FROM monogramm/docker-uxbox-builder:latest
|
||||||
|
|
||||||
|
ENV LEIN_ROOT=TRUE
|
||||||
|
|
||||||
# Copy backend source and build release
|
# Copy backend source and build release
|
||||||
COPY . /home/uxbox/backend
|
COPY . /home/uxbox/backend
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
FROM monogramm/docker-uxbox-builder:latest
|
FROM monogramm/docker-uxbox-builder:latest
|
||||||
|
|
||||||
ENV API_URL http://127.0.0.1:6060/api
|
ENV API_URL=http://127.0.0.1:6060/api
|
||||||
|
ENV LEIN_ROOT=TRUE
|
||||||
|
|
||||||
# Copy frontend source and build release
|
# Copy frontend source and build release
|
||||||
COPY . /home/uxbox/frontend
|
COPY . /home/uxbox/frontend
|
||||||
|
|
Loading…
Reference in a new issue